/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* ==========================================
   POP-UP (MODAL ENTRADA)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #00bcd4;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #000000;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-right: 25px;
}

.modal-logo {
    height: 45px;
    width: auto;
}

.modal-badge {
    background-color: #e0f7fa;
    color: #00838f;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-body h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.modal-body p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.modal-notice {
    font-size: 0.84rem !important;
    color: #777777 !important;
    font-style: italic;
}

.modal-divider {
    border: 0;
    height: 1px;
    background: #eeeeee;
    margin: 18px 0;
}

.modal-cta-text {
    font-size: 0.92rem !important;
    color: #222222 !important;
}

.btn-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 6px;
    margin-top: 18px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-modal-whatsapp:hover {
    background-color: #1eb957;
    transform: translateY(-2px);
}

/* ==========================================
   1. BARRA SUPERIOR Y REDES SOCIALES
   ========================================== */
.top-header {
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
    padding: 12px 0;
    width: 100%;
}

.top-header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.top-email {
    color: #00bcd4;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-email:hover {
    text-decoration: underline;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-socials a {
    color: #00bcd4;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   DESPLEGABLE DE INSTAGRAM
   ========================================== */
.insta-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.insta-dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
    bottom: -20px;
    z-index: 1999;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111111;
    border: 1px solid #00bcd4;
    border-radius: 6px;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 6px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.insta-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    color: #ffffff !important;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #00bcd4;
    color: #ffffff !important;
}

.footer-insta .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    transform: translateY(-8px);
}

.footer-insta:hover .dropdown-menu,
.footer-insta .dropdown-menu:hover {
    transform: translateY(0);
}

.footer-insta::before {
    top: -20px;
    bottom: 0;
}

/* ==========================================
   2. SLIDER CARRUSEL
   ========================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #111111;
    padding-bottom: 50px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 15s infinite ease-in-out;
}

.slide-1 {
    background-image: url('img/portada/slider1.jpg');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('img/portada/slider2.jpg');
    animation-delay: 5s;
}

.slide-3 {
    background-image: url('img/portada/slider3.jpg');
    animation-delay: 10s;
}

@keyframes fadeSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.sub-title {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #00bcd4;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.hero-description {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 22px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #00bcd4;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0097a7;
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* ==========================================
   3. MENÚ NAVEGACIÓN
   ========================================== */
.sticky-navigation {
    background-color: #000000;
    border-bottom: 2px solid #00bcd4;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.sticky-navigation.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-navigation.fixed + .info-section {
    margin-top: 60px;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo-mini img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00bcd4;
}

/* BOTÓN HAMBURGUESA */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   4. PRESENTACIÓN
   ========================================== */
.info-section {
    background-color: #ffffff;
    padding: 50px 20px 40px 20px;
    text-align: center;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.logo-hero-center img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.section-title-sub {
    font-size: 1.4rem;
    font-weight: 700;
    color: #666666;
    margin-bottom: 12px;
}

.section-title-main {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.title-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto 20px auto;
}

.description-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sub-description-text {
    font-size: 0.9rem;
    color: #666666;
}

.section-divider {
    max-width: 1100px;
    height: 1px;
    background-color: #eeeeee;
    margin: 20px auto 50px auto;
}

/* ==========================================
   5. CARACTERÍSTICAS Y OBJETIVOS
   ========================================== */
.features-section {
    background-color: #ffffff;
    padding: 0 20px 50px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-card {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #555555;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.rsce-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.afijo-text {
    font-size: 0.85rem !important;
    color: #777777 !important;
}

.objective-text {
    text-align: left;
}

.btn-outline {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #00bcd4;
    color: #00bcd4;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: auto;
}

.btn-outline:hover {
    background-color: #00bcd4;
    color: #ffffff;
}

/* ==========================================
   6. SOBRE NOSOTROS
   ========================================== */
.about-section {
    background-color: #ffffff;
    padding: 20px 20px 50px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    position: sticky;
    top: 80px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1.2;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.about-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* ==========================================
   7. TARJETAS INFORMATIVAS
   ========================================== */
.cards-section {
    background-color: #ffffff;
    padding: 20px 20px 80px 20px;
}

.cards-header {
    text-align: center;
    margin-bottom: 40px;
}

.cards-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto;
}

.cards-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
}

.info-card {
    flex: 1;
    background-color: #f6f6f6;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.info-card h2 {
    font-size: 1.7rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 2px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.info-card:hover .card-image img {
    transform: scale(1.03);
}

.info-card p {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* ==========================================
   8. CARACTERÍSTICAS DEL HUSKY
   ========================================== */
.characteristics-section {
    background-color: #ffffff;
    padding: 20px 20px 60px 20px;
}

.characteristics-container {
    max-width: 1100px;
    margin: 0 auto;
}

.characteristics-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.characteristics-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto 35px auto;
}

.char-paragraph {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.breed-subsection {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 50px 0 40px 0;
}

.breed-image {
    flex: 1;
}

.breed-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.breed-content {
    flex: 1.2;
}

.breed-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 15px;
}

.breed-content p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.health-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 25px 0;
}

.health-list li {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.health-list li::before {
    content: "•";
    color: #333333;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.closing-text {
    margin-top: 30px;
}

.closing-text p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.group-banner {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 4px;
}

.group-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* ==========================================
   9. CONTACTO
   ========================================== */
.contact-section {
    background-color: #f7f7f7;
    padding: 60px 20px 80px 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.contact-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto 50px auto;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 1.4rem;
    color: #00bcd4;
    width: 25px;
    text-align: center;
}

.info-item a {
    color: #00bcd4;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333333;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00bcd4;
}

.btn-submit {
    align-self: flex-end;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: #1eb957;
}

/* ==========================================
   10. ANIMACIÓN SCROLL & BOTÓN FLOTANTE
   ========================================== */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1), .info-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2), .info-card:nth-child(2) { transition-delay: 0.25s; }
.feature-card:nth-child(3), .info-card:nth-child(3) { transition-delay: 0.4s; }

.float-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* ==========================================
   11. FOOTER
   ========================================== */
.site-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    border-top: 2px solid #00bcd4;
    padding: 40px 20px 20px 20px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222222;
}

.footer-certifications {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-certifications .footer-rsce {
    height: 52px;
    width: auto;
    object-fit: contain;
    background-color: #0d0d0d;
    padding: 4px;
    border-radius: 4px;
    mix-blend-mode: lighten;
}

.footer-brand-center {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.footer-brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-brand-sub {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-brand-tagline {
    font-size: 0.82rem;
    color: #aaaaaa;
    margin: 0;
}

.footer-socials {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    align-items: center;
}

.footer-socials a,
.footer-socials .insta-dropdown > a {
    color: #00bcd4;
    font-size: 1.05rem !important;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-socials a:hover,
.footer-socials .insta-dropdown:hover > a {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-socials svg,
.footer-socials img {
    width: 1.05rem;
    height: 1.05rem;
    max-width: 1.05rem;
    max-height: 1.05rem;
    object-fit: contain;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #777777;
    margin: 0;
}

.author-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================
   TARJETAS DE CACHORROS Y EJEMPLARES
   ========================================== */
.puppies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.puppy-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.puppy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.puppy-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.puppy-card:hover .puppy-image img {
    transform: scale(1.05);
}

.puppy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.puppy-badge.disponible {
    background-color: #25d366;
    color: #ffffff;
}

.puppy-badge.adopcion {
    background-color: #ff9800;
    color: #ffffff;
}

.puppy-badge.memoria {
    background-color: #9e9e9e;
    color: #ffffff;
}

.puppy-badge.campeon {
    background-color: #ff9800;
    color: #ffffff;
}

.puppy-badge.adoptado {
    background-color: #4caf50;
    color: #ffffff;
}

.puppy-badge.disponible,
.puppy-badge.adopcion,
.puppy-badge.memoria,
.puppy-badge.campeon,
.puppy-badge.adoptado {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.puppy-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.puppy-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.puppy-pedigree {
    font-size: 0.75rem;
    font-style: italic;
    color: #00bcd4;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.puppy-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #666;
}

.puppy-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.puppy-details i {
    color: #00bcd4;
}

.puppy-description {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.puppy-info .btn-outline {
    align-self: center;
    margin-top: auto;
}

/* Tarjetas de adopción */
.adoption-card {
    border: 2px solid #ff9800;
}

.adoption-card .puppy-info h3 {
    color: #e65100;
}

.adoption-btn {
    border-color: #ff9800 !important;
    color: #ff9800 !important;
}

.adoption-btn:hover {
    background-color: #ff9800 !important;
    color: #ffffff !important;
}

/* Ajuste para grid de venta (3 tarjetas centradas) */
.puppies-grid.sale-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* GALERÍA DE FOTOS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================
   MODAL DE PERFIL DE EJEMPLARES
   ========================================== */
.profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.profile-modal.active {
    display: flex;
}

.profile-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.profile-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10002;
}

.profile-close:hover {
    color: #00bcd4;
}

/* CABECERA NEGRA */
.profile-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 25px 30px;
    background-color: #111111;
    border-radius: 12px 12px 0 0;
    border-bottom: 3px solid #00bcd4;
}

.profile-header img {
    width: 180px;
    height: 135px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #00bcd4;
    flex-shrink: 0;
}

.profile-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.profile-pedigree {
    font-size: 0.85rem;
    font-style: italic;
    color: #00bcd4;
}

.profile-body {
    padding: 25px 30px;
}

.profile-body p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.profile-body strong {
    color: #222;
}

/* LOGROS Y GALERÍA EN MODAL */
.profile-logros {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.profile-logros h3,
.profile-gallery h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.profile-logros-list {
    list-style: none;
    padding: 0;
}

.profile-logros-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 5px;
}

.profile-logros-list li i {
    color: #ff9800;
    margin-right: 8px;
}

.profile-gallery {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.profile-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================
   ENLACE PEDIGREE
   ========================================== */
.profile-pedigree-link {
    text-align: center;
    margin-top: 10px;
}

.profile-pedigree-link .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 0.85rem;
}

/* ==========================================
   ÁRBOL GENEALÓGICO
   ========================================== */
.profile-arbol {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    overflow-x: auto;
}

.profile-arbol h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.arbol-horizontal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    min-width: 600px;
    padding: 15px 10px;
}

.arbol-columna {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arbol-linea-horizontal {
    display: none;
}

.arbol-nodo {
    background-color: #2a2a2a;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    min-width: 110px;
    max-width: 160px;
}

.arbol-nodo strong {
    display: block;
    font-size: 0.75rem;
    color: #ffffff;
    margin-bottom: 3px;
}

.arbol-nodo span {
    display: block;
    font-size: 0.6rem;
    color: #aaa;
    font-style: italic;
}

.arbol-nodo-actual {
    background-color: #00bcd4;
    border-color: #00bcd4;
    padding: 15px 22px;
    min-width: 130px;
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

.arbol-nodo-actual strong {
    font-size: 0.9rem;
    color: #ffffff;
}

.arbol-nodo-actual span {
    color: #e0f7fa;
    font-size: 0.65rem;
}

.arbol-padres-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.arbol-abuelos-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

/* Responsive árbol */
@media (max-width: 600px) {
    .arbol-horizontal {
        min-width: 450px;
        padding: 10px 5px;
        gap: 20px;
    }
    
    .arbol-nodo {
        min-width: 80px;
        max-width: 120px;
        padding: 8px 10px;
    }
    
    .arbol-nodo strong {
        font-size: 0.65rem;
    }
    
    .arbol-nodo span {
        font-size: 0.5rem;
    }
    
    .arbol-padres-vertical,
    .arbol-abuelos-vertical {
        gap: 20px;
    }
}

/* ==========================================
   ACCESOS RÁPIDOS - ESTILO SUTIL CON HUELLAS
   ========================================== */
.quick-access-section {
    background-color: #ffffff;
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.quick-access-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quick-access-label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-access-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-access-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    transition: all 0.25s ease;
    background-color: #ffffff;
}

.quick-access-card i {
    font-size: 0.65rem;
    color: #00bcd4;
    transition: transform 0.25s ease;
}

.quick-access-card:hover {
    border-color: #00bcd4;
    color: #00bcd4;
    background-color: #fafafa;
}

.quick-access-card:hover i {
    transform: scale(1.2);
}

.quick-access-card[href="#machos"]:hover {
    border-color: #00bcd4;
    color: #00bcd4;
}

.quick-access-card[href="#machos"]:hover i {
    color: #00bcd4;
}

.quick-access-card[href="#hembras"]:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.quick-access-card[href="#hembras"]:hover i {
    color: #e91e63;
}

.quick-access-card[href="#campeones"]:hover {
    border-color: #ff9800;
    color: #ff9800;
}

.quick-access-card[href="#campeones"]:hover i {
    color: #ff9800;
}

.quick-access-card[href="#memoria"]:hover {
    border-color: #9e9e9e;
    color: #757575;
}

.quick-access-card[href="#memoria"]:hover i {
    color: #9e9e9e;
}

/* ==========================================
   SCROLL MARGIN PARA SECCIONES CON ANCLA
   ========================================== */
section[id] {
    scroll-margin-top: 70px;
}

/* ==========================================
   SUAVIZAR SCROLL AL HACER CLICK EN ANCLA
   ========================================== */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   MENÚ DESPLEGABLE RECURSOS
   ========================================== */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: #111111;
    border: 1px solid #00bcd4;
    border-radius: 6px;
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 6px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    color: #ffffff !important;
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a i {
    color: #00bcd4;
    width: 16px;
    text-align: center;
}

.nav-dropdown-menu a:hover {
    background-color: #00bcd4;
    color: #ffffff !important;
}

.nav-dropdown-menu a:hover i {
    color: #ffffff;
}

/* Responsive - Desplegable en móvil */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        margin-top: 5px;
        background-color: #1a1a1a;
        border: none;
        border-left: 3px solid #00bcd4;
        border-radius: 0;
        padding: 5px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 300px;
    }
    
    .nav-dropdown-menu a {
        padding: 10px 15px 10px 25px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   INSTAGRAM FEED
   ========================================== */
.instagram-section {
    background-color: #ffffff;
    padding: 60px 20px 70px 20px;
    text-align: center;
}

.instagram-container {
    max-width: 1100px;
    margin: 0 auto;
}

.instagram-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.instagram-title i {
    color: #00bcd4;
    font-size: 1.6rem;
}

.instagram-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto 20px auto;
}

.instagram-text {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 35px;
}

.instagram-text strong {
    color: #00bcd4;
    font-weight: 700;
}

.instagram-widget-wrapper {
    max-width: 900px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #00bcd4;
    color: #00bcd4;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.instagram-btn:hover {
    background-color: #00bcd4;
    color: #ffffff;
}

.instagram-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 40px 15px 50px 15px;
    }
    
    .instagram-title {
        font-size: 1.4rem;
        gap: 8px;
    }
    
    .instagram-title i {
        font-size: 1.3rem;
    }
    
    .instagram-widget-wrapper {
        border-radius: 8px;
    }
}

/* ==========================================
   FAQ - ACORDEÓN
   ========================================== */
.faq-category {
    margin-bottom: 50px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00bcd4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    color: #00bcd4;
    font-size: 1.3rem;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.15);
    background-color: #ffffff;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question {
    color: #00838f;
}

.faq-question:hover {
    color: #00bcd4;
}

.faq-icon {
    color: #00bcd4;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 25px 15px 25px;
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    text-align: left;
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 25px 15px 50px;
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #222;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 20px 15px 20px;
        font-size: 0.88rem;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding-left: 40px;
    }
}

/* ==========================================
   BOTÓN WHATSAPP EN FAQ
   ========================================== */
.faq-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 25px 20px 25px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.faq-whatsapp-btn:hover {
    background-color: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.faq-whatsapp-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-whatsapp-btn {
        margin: 12px 20px 18px 20px;
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

/* ==========================================
   GUÍA DEL HUSKY - SECCIONES
   ========================================== */
.guia-seccion {
    margin-bottom: 60px;
}

.guia-seccion:last-child {
    margin-bottom: 0;
}

.guia-titulo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.guia-titulo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00bcd4;
}

.guia-imagen {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guia-imagen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.guia-imagen-caption {
    font-size: 0.8rem;
    font-style: italic;
    color: #888;
    text-align: center;
    padding: 12px 15px;
    margin: 0;
    background-color: #f9f9f9;
}

.guia-parrafo {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}

.guia-parrafo strong {
    color: #222;
}

/* Imagen vertical flotante */
.guia-imagen-vertical {
    float: right;
    width: 300px;
    max-width: 45%;
    margin: 10px 0 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.guia-imagen-vertical img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.guia-imagen-vertical .guia-imagen-caption {
    font-size: 0.75rem;
    padding: 10px 12px;
    background-color: #f9f9f9;
}

/* Limpiar el float después de la sección */
.guia-seccion::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .guia-titulo {
        font-size: 1.4rem;
    }
    
    .guia-parrafo {
        font-size: 0.9rem;
        line-height: 1.75;
    }
    
    .guia-imagen-vertical {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 30px 0;
    }
}

/* ==========================================
   IMAGEN PEQUEÑA ESPECÍFICA EN LA GUÍA
   ========================================== */
.guia-imagen.guia-imagen-pequena {
    max-width: 500px;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .guia-imagen.guia-imagen-pequena {
        max-width: 100%;
    }
}

/* ==========================================
   SUBTÍTULOS Y TABLAS DE LA GUÍA
   ========================================== */
.guia-subtitulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    margin-top: 30px;
}

.guia-tabla-wrapper {
    margin: 35px 0;
    overflow-x: auto;
}

.guia-tabla {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    table-layout: fixed;
}

.guia-tabla thead {
    background-color: #111111;
    color: #ffffff;
}

.guia-tabla thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.guia-tabla thead th:nth-child(1) {
    width: 40%;
}

.guia-tabla thead th:nth-child(2) {
    width: 30%;
}

.guia-tabla thead th:nth-child(3) {
    width: 30%;
}

.guia-tabla tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.guia-tabla tbody tr:last-child {
    border-bottom: none;
}

.guia-tabla tbody tr:hover {
    background-color: #f9f9f9;
}

.guia-tabla tbody td {
    padding: 14px 20px;
    color: #555;
    vertical-align: middle;
    word-wrap: break-word;
}

.guia-tabla tbody td strong {
    color: #222;
}

@media (max-width: 768px) {
    .guia-tabla {
        font-size: 0.82rem;
    }
    
    .guia-tabla thead th,
    .guia-tabla tbody td {
        padding: 10px 12px;
    }
    
    .guia-subtitulo {
        font-size: 1.05rem;
    }
}

/* ==========================================
   RESPONSIVE GENERAL
   ========================================== */
@media (max-width: 1024px) {
    .puppies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 2px solid #00bcd4;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    .features-container, 
    .about-container, 
    .cards-container, 
    .breed-subsection, 
    .contact-grid {
        flex-direction: column;
    }

    .about-image, 
    .breed-image {
        position: static;
        width: 100%;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 25px;
    }

    .footer-certifications, 
    .footer-socials {
        justify-content: center;
    }

    .hero-slider-section {
        height: 65vh;
        padding-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .dropdown-menu {
        right: 50%;
        transform: translateX(50%);
    }
    
    .puppies-grid,
    .puppies-grid.sale-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
    
    .puppy-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .puppy-image {
        height: 280px;
    }
    
    .puppy-info h3 {
        font-size: 1.5rem;
    }
    
    .puppy-info .btn-outline {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profile-modal-content {
        max-width: 95%;
    }
    
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .profile-header img {
        width: 100%;
        max-width: 250px;
        height: 180px;
        margin-bottom: 10px;
    }
    
    .profile-body {
        padding: 20px;
    }
    
    .profile-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-gallery-grid img {
        height: 180px;
    }
    
    .quick-access-grid {
        gap: 8px;
    }
    
    .quick-access-card {
        padding: 7px 14px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .nav-logo-mini img {
        height: 32px;
    }
    
    .hamburger-menu span {
        width: 22px;
    }
    
    .puppies-grid,
    .puppies-grid.sale-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .puppy-card {
        max-width: 100%;
    }
    
    .puppy-image {
        height: 250px;
    }
    
    .puppy-info {
        padding: 15px;
    }
    
    .puppy-info h3 {
        font-size: 1.3rem;
    }
    
    .puppy-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .quick-access-grid {
        gap: 5px;
    }
    
    .quick-access-card {
        padding: 6px 10px;
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}

/* CORRECCIÓN GENERAL PARA EVITAR DESBORDAMIENTOS EN MÓVIL */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ==========================================
   FIX TÍTULOS TABLA (FUERZA ALINEACIÓN)
   ========================================== */
.guia-tabla thead th {
    padding: 15px 20px !important;
    text-align: left !important;
    vertical-align: middle !important;
}

.guia-tabla thead th:nth-child(1),
.guia-tabla tbody td:nth-child(1) {
    padding-left: 20px !important;
}

.guia-tabla thead th:nth-child(2),
.guia-tabla tbody td:nth-child(2) {
    padding-left: 20px !important;
}

.guia-tabla thead th:nth-child(3),
.guia-tabla tbody td:nth-child(3) {
    padding-left: 20px !important;
}

/* ==========================================
   FIX TABLA COMPARATIVA - ALINEACIÓN IZQUIERDA
   ========================================== */
.guia-tabla thead th,
.guia-tabla tbody td {
    text-align: left !important;
    padding: 14px 20px !important;
    vertical-align: middle !important;
}

.guia-tabla thead th {
    padding: 15px 20px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.guia-tabla thead th:nth-child(1),
.guia-tabla tbody td:nth-child(1) {
    width: 40% !important;
    text-align: left !important;
}

.guia-tabla thead th:nth-child(2),
.guia-tabla tbody td:nth-child(2) {
    width: 30% !important;
    text-align: left !important;
}

.guia-tabla thead th:nth-child(3),
.guia-tabla tbody td:nth-child(3) {
    width: 30% !important;
    text-align: left !important;
}

/* ==========================================
   FIX: VISIBILIDAD GARANTIZADA SI FALLA EL OBSERVER
   (Añadido para asegurar que las secciones se vean
   aunque el IntersectionObserver no se dispare)
   ========================================== */
section.info-section.fade-in-scroll,
.section-divider.fade-in-scroll {
    opacity: 1;
    transform: none;
}

/* Mantener la animación solo cuando el JS añade .visible */
.fade-in-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================
   FIX: ESTILOS DE LISTAS EN LA GUÍA
   ========================================== */
.guia-lista {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 25px 0;
    text-align: left;
}

.guia-lista li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    text-align: left;
}

.guia-lista li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #00bcd4;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
}

.guia-lista li strong {
    color: #222;
}

/* Responsive listas */
@media (max-width: 768px) {
    .guia-lista li {
        font-size: 0.9rem;
        padding-left: 24px;
        margin-bottom: 10px;
    }
    
    .guia-lista li::before {
        left: 5px;
        font-size: 1.2rem;
    }
}

/* ==========================================
   CONSEJOS Y TIPS - TARJETAS VISUALES
   ========================================== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.tip-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 28px 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #00bcd4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.12);
}

.tip-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.tip-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #e0f7fa;
    color: #00bcd4;
    border-radius: 10px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tip-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}

.tip-list li:last-child {
    margin-bottom: 0;
}

.tip-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #00bcd4;
    font-size: 0.75rem;
}

.tip-list li strong {
    color: #222;
}

/* CTA final */
.tips-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0fdff 100%);
    border-radius: 12px;
    border: 1px solid #e0f7fa;
}

.tips-cta p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tips-cta strong {
    color: #111;
}

/* Responsive tarjetas */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .tip-card {
        padding: 22px 20px;
    }
    
    .tip-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
    
    .tip-card-title {
        font-size: 1rem;
    }
    
    .tip-list li {
        font-size: 0.88rem;
        margin-bottom: 10px;
    }
}

/* ==========================================
   FIX: DROPDOWN RECURSOS EN NAV FIJA
   ========================================== */

/* Asegurar que la nav fija esté por encima de todo el contenido */
.sticky-navigation.fixed {
    z-index: 9999;
}

/* Puente invisible para mantener el hover entre el botón y el menú */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    z-index: 1999;
    pointer-events: auto;
}

/* Asegurar que el menú desplegable esté por encima del contenido */
.nav-dropdown-menu {
    z-index: 10000;
}

/* Cuando la nav está fija, aseguramos que el dropdown siga funcionando */
.sticky-navigation.fixed .nav-dropdown-menu {
    z-index: 10000;
}

/* ==========================================
   RECURSOS HUB - TARJETAS PRINCIPALES
   ========================================== */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.recurso-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recurso-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #26c6da);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.15);
    border-color: #e0f7fa;
}

.recurso-card:hover::before {
    transform: scaleX(1);
}

.recurso-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #e0f7fa;
    color: #00bcd4;
    border-radius: 15px;
    font-size: 1.7rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.recurso-card:hover .recurso-card-icon {
    background-color: #00bcd4;
    color: #ffffff;
    transform: scale(1.05);
}

.recurso-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.recurso-card-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.recurso-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00bcd4;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: gap 0.25s ease;
    margin-top: auto;
}

.recurso-card:hover .recurso-card-link {
    gap: 14px;
}

.recurso-card-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.recurso-card:hover .recurso-card-link i {
    transform: translateX(3px);
}

/* Responsive tarjetas hub */
@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recurso-card {
        padding: 28px 24px;
    }
    
    .recurso-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .recurso-card-title {
        font-size: 1.15rem;
    }
    
    .recurso-card-desc {
        font-size: 0.88rem;
    }
}

/* ==========================================
   GUÍA - ÍNDICE NAVEGABLE
   ========================================== */
.guia-indice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.guia-indice-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
}

.guia-indice-item:hover {
    background-color: #e0f7fa;
    border-left-color: #00bcd4;
    transform: translateX(4px);
}

.guia-indice-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.guia-indice-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.2px;
}

.guia-indice-item:hover .guia-indice-text {
    color: #00838f;
}

@media (max-width: 768px) {
    .guia-indice {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .guia-indice-item {
        padding: 14px 16px;
    }
    
    .guia-indice-text {
        font-size: 0.85rem;
    }
}

/* ==========================================
   ACTUALIDAD - NOTICIAS
   ========================================== */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.noticia-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.12);
}

.noticia-imagen {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.noticia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-imagen img {
    transform: scale(1.05);
}

.noticia-contenido {
    padding: 22px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.noticia-fecha {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #00bcd4;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.noticia-titulo {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}

.noticia-extracto {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00bcd4;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.2s ease;
    margin-top: auto;
    align-self: flex-start;
}

.noticia-link:hover {
    gap: 12px;
    color: #00838f;
}

.noticia-link i {
    font-size: 0.7rem;
}

/* Nota informativa */
.actualidad-nota {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 600px;
}

.actualidad-nota i {
    color: #00bcd4;
    margin-right: 6px;
}

/* ==========================================
   ACTUALIDAD - CAMADAS
   ========================================== */
.camadas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.camada-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.camada-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.12);
}

.camada-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.camada-icon-disponible {
    background: linear-gradient(135deg, #25d366, #1eb957);
}

.camada-icon-preparacion {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.camada-icon-info {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.camada-titulo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.camada-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
    flex-grow: 1;
}

.camada-card .btn-outline {
    margin-top: auto;
    padding: 10px 22px;
    font-size: 0.8rem;
}

/* ==========================================
   ACTUALIDAD - EVENTOS
   ========================================== */
.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.evento-item {
    display: flex;
    gap: 22px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 22px 25px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    text-align: left;
}

.evento-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.12);
}

.evento-fecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    border-radius: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.evento-mes {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.evento-dia {
    font-size: 1.5rem;
    line-height: 1;
}

.evento-info {
    flex: 1;
}

.evento-titulo {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.evento-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.evento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #00838f;
    background-color: #e0f7fa;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.evento-tag i {
    font-size: 0.7rem;
}

/* ==========================================
   ACTUALIDAD - RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .noticias-grid {
        grid-template-columns: 1fr;
    }

    .camadas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .evento-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .evento-fecha {
        min-width: 70px;
        height: 70px;
    }
    
    .noticia-contenido {
        padding: 18px;
    }
    
    .camada-card {
        padding: 25px 20px;
    }
}

/* ==========================================
   INDEX - SECCIÓN ÚLTIMAS NOTICIAS
   ========================================== */
.index-noticias-section {
    background-color: #ffffff;
    padding: 60px 20px 70px 20px;
    text-align: center;
}

.index-noticias-container {
    max-width: 1100px;
    margin: 0 auto;
}

.index-noticias-subtitle {
    font-size: 0.78rem;
    letter-spacing: 3px;
    color: #00bcd4;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.index-noticias-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.index-noticias-divider {
    width: 45px;
    height: 3px;
    background-color: #00bcd4;
    margin: 0 auto 20px auto;
}

.index-noticias-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.index-noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
    text-align: left;
}

.index-noticia-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
}

.index-noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.12);
}

.index-noticia-imagen {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
}

.index-noticia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-noticia-card:hover .index-noticia-imagen img {
    transform: scale(1.05);
}

.index-noticia-contenido {
    padding: 20px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.index-noticia-fecha {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #00bcd4;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.index-noticia-titulo {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.4;
}

.index-noticia-extracto {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.index-noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00bcd4;
    font-size: 0.82rem;
    font-weight: 700;
    transition: gap 0.25s ease;
    margin-top: auto;
}

.index-noticia-card:hover .index-noticia-link {
    gap: 10px;
}

.index-noticia-link i {
    font-size: 0.7rem;
}

/* Botón "Ver todas las noticias" */
.index-noticias-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid #00bcd4;
    color: #00bcd4;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.index-noticias-cta:hover {
    background-color: #00bcd4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .index-noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .index-noticias-title {
        font-size: 1.5rem;
    }
    
    .index-noticias-section {
        padding: 40px 15px 50px 15px;
    }
}