/* ==================== BASE ==================== */
@font-face {
    font-family: 'Optima';
    src: url('../fonts/Optima%20Roman/Optima%20Roman.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Optima';
    src: url('../fonts/Optima%20DemiBold/Optima%20DemiBold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core palette */
    --accent-bg: #f9ffe7;   /* soft background accent */
    --main: #cdef91;      /* main green */
    --secondary: #084734;  /* darker green */
    --black: #373737;       /* default body text */
    --white: #ffffff;       /* unified white for surfaces and on-image */

    /* UI tokens */
    --header-bg: rgba(98, 96, 81, 0.3);
    --header-border: rgba(255, 255, 255, 1);
    --footer-bg: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.2);
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ==================== HEADER / NAVBAR ==================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .nav-link,
.main-header.scrolled .whatsapp-icon {
    color: var(--secondary);
}

.main-header.scrolled .whatsapp-icon:hover {
    background-color: var(--main);
}

/* ==================== URNAS PAGE HEADER ==================== */
.urnas-header {
    background-color: var(--accent-bg) !important;
    border-bottom: var(--secondary) 1px solid !important;
    backdrop-filter: none !important;
}

.urnas-header .nav-link {
    color: var(--secondary);
}

.urnas-header .whatsapp-icon {
    color: var(--secondary);
}

.urnas-header .hamburger span {
    background-color: var(--secondary);
}

.urnas-header.scrolled {
    background-color: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.urnas-header.scrolled .nav-link,
.urnas-header.scrolled .whatsapp-icon {
    color: var(--secondary);
}

.urnas-header.scrolled .whatsapp-icon:hover {
    background-color: var(--main);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Index page logo styling */
.index-page .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.index-page .main-header.scrolled .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link-inicio {
    display: inline-block;
}

/* Active link styling */
.nav-link.active {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

.main-header.scrolled .nav-link.active {
    border-bottom-color: var(--secondary);
}

.urnas-header .nav-link.active {
    border-bottom-color: var(--secondary);
}

.whatsapp-icon {
    color: var(--secondary);
    font-size: 24px;
    transition: color 0.3s ease, opacity 0.3s ease;
    background-color: var(--white);
    padding: 2px 9px 2px 9px;
    border-radius: 60px;
    border: 1px solid var(--secondary);
}

.whatsapp-icon:hover {
    color: var(--secondary);
    background-color: var(--main);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.main-header.scrolled .hamburger span {
    background-color: var(--secondary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--secondary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--secondary);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(.9);
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(175, 174, 141, 0.3);
    backdrop-filter: blur(10px);
    mix-blend-mode: multiply;
    z-index: -1;
    border-radius: 30px;
    filter: drop-shadow(0 0 20px rgba(77, 80, 24, 0.8));
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(24, 28, 1, 0.5);
}

.hero-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 200;
    font-size: 40px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 900px;
    text-shadow: 0 4px 10px rgba(123, 127, 98, 0.5);
    padding: 0 20px;
}

/* ==================== PURPOSE SECTION ==================== */
.purpose-section {
    background-color: var(--accent-bg);
    min-height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
}

.purpose-inner {
    max-width: 1000px;
    text-align: center;
    }

.services-section {
    background-color: var(--white);
    padding: 50px 60px;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    text-align: center;
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 5px;
    margin-top: 58px;
}

.services-subtitle {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--secondary);
    margin: 0 0 45px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    justify-items: center;
}

.service-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 26px;
    border-radius: 999px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.08s ease;
    box-shadow: var(--shadow-md);
}

.service-card:active { transform: translateY(1px); }

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 99px;
    background-color: var(--main);
    flex-shrink: 0;
}

.service-icon img {
    width: 24px;
    height: 24px;
    display: block;
}



.service-label {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.service-card.active {
    background-color: var(--main);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.service-card.active .service-icon {
    background-color: var(--white);
}



.service-content-wrap {
    margin-top: 86px;
    display: flex;
    justify-content: flex-start;
}

.service-content {
    color: var(--black);
    padding: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.6;
}

.service-content p {
    margin-bottom: 16px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 16px 0;
}

.service-content li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.service-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url('../img/paw.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    filter: hue-rotate(200deg);
}

.service-closing {
    color: var(--secondary);
    font-weight: 200;
    margin-top: 16px;
    font-style: italic;
}

.italic-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-style: italic;
    position: relative;
}

.italic-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1.3px;
    background-color: var(--black);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.italic-link:hover::after {
    width: 100%;
}

.italic-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
    filter: brightness(0);
}

/* SVG filters for purple to green conversion */
img[src*='house.svg'],
img[src*='paws.svg'],
img[src*='paw.svg'] {
    filter: hue-rotate(200deg);
}

@media (max-width: 960px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { width: 100%; max-width: 680px; }
}

/* Hover/active feedback */
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.service-card:active {
    transform: translateY(1px);
}
    


.purpose-inner p {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-style: italic;
    font-weight: 100;
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
}

@media (max-width: 768px) {
    .purpose-inner p {
        font-size: 18px;
        line-height: 1.5;
    }
}
.hero-button {
    display: inline-block;
    margin-top: 42px;
    padding: 12px 22px;
    border-radius: 999px;
    background-color: var(--white);
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: var(--main);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hero-button:active {
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-section {
        height: 100svh;
    }

    .hero-text {
        margin: 0 14px;
    }

    .navbar {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link-inicio {
        display: block;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        font-size: 18px;
        color: var(--secondary);
        text-align: center;
        padding: 8px 0;
    }
    
    .whatsapp-icon {
        color: var(--secondary);
        font-size: 28px;
        padding: 2px 11px 2px 11px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* asegurar que el contenido y las gradientes queden por encima de la imagen */
.container,
.footer-content {
    position: relative;
    z-index: 2;
}

    /* Desplaza los "puntos" para parecer aleatorio */
@keyframes bgShift {
    0%{
        background-position: 0% 0%, 100% 10%, 50% 100%, 0% 100%, 50% 50%;
    }
    25%{
        background-position: 30% 18%, 72% 38%, 60% 78%, 22% 62%, 62% 36%;
    }
    50%{
        background-position: 52% 54%, 44% 72%, 82% 32%, 40% 8%, 38% 64%;
    }
    75%{
        background-position: 68% 28%, 18% 52%, 28% 88%, 82% 40%, 58% 72%;
    }
    100%{
        background-position: 0% 0%, 100% 10%, 50% 100%, 0% 100%, 50% 50%;
    }
}


/* Suave pulso de saturación/brillo para dar vida */
@keyframes bgPulse {
    0%, 100% { filter: saturate(1) brightness(1); }
    50%     { filter: saturate(1.12) brightness(1.06); }
}


.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* ...PROXIMAMENTE... */
/* ...PROXIMAMENTE... */
/* ...PROXIMAMENTE... */
/* ...PROXIMAMENTE... */

/* logo wrapper + fixed backdrop under the logo for better visibility */
.logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3; /* above animated gradients */
    margin-bottom: 0.5rem;
}

/* non-animated, fixed-looking gradient/backdrop right under the logo */
.logo-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 340px;      /* adjust size to suit your logo */
    height: 340px;
    border-radius: 180px;
    z-index: 2;        /* sits under the img but above body gradients */
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.85) 12%,
        rgba(255,255,255,0.6) 24%,
        rgba(255,255,255,0.25) 40%,
        rgba(255,255,255,0) 70%
    );

    filter: blur(14px);
}

/* ensure logo is above the backdrop */
.main-logo {
    position: relative;
    z-index: 4;
    height: 120px;
    width: auto;
}


h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Kanit', sans-serif;
    margin: 0;
    text-align: center;
}

footer {
    background-color: var(--footer-bg);
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contact-info {
    color: var(--white);
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.fa-envelope, .fa-phone, .fa-instagram{
    font-size: 1.2rem;
    color: var(--white);
}

/* enlaces en blanco sin subrayado */
.contact-info a {
    color: var(--white);
    text-decoration: none;
}

/* efecto hover sutil para enlaces */
.contact-info a:hover {
    text-decoration: underline;
    color: var(--main);
}

.paw-loader {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.fa-paw {
    color: var(--white);
    font-size: 24px;
    opacity: 0.8;
    filter: hue-rotate(200deg);
}

.fa-paw:nth-child(1) {
    animation: loading 1s ease-in-out infinite;
}

.fa-paw:nth-child(2) {
    animation: loading 1s ease-in-out 0.2s infinite;
}

.fa-paw:nth-child(3) {
    animation: loading 1s ease-in-out 0.4s infinite;
}

@keyframes loading {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) scale(0.9);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
}

/* ==================== PLANS SECTION ==================== */
.plans-section {
    width: 100%;
}

.plans-title-container {
    width: 100%;
    height: 160px;
    background-color: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    text-align: center;
}

.plans-grid {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.plan-card {
    width: 50%;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: width 1s ease, padding 1s ease, height 1s ease, min-height 1s ease, transform 0.4s ease;
    will-change: width, height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease, background-image 0.3s ease;
    z-index: -1;
}

.plan-card:hover::before {
    transform: scale(1.08);
}

.plan-left::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)), url('../img/planes01.jpg');
}

.plan-left:hover::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, .7)), url('../img/planes01.jpg');
}

.plan-right::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)), url('../img/planes02.jpg');
}

.plan-right:hover::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, .7)), url('../img/planes02.jpg');
}

.plan-card-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 30px;
    color: var(--black);
    line-height: 1.2;
}

.plan-card-title-default {
    text-align: center;
    max-width: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.plan-card-title-active {
    text-align: left;
    max-width: 100%;
    align-self: flex-start;
    margin-bottom: 0px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.plan-arrow {
    width: 50px;
    height: auto;
    filter: invert(92%) sepia(15%) saturate(1341%) hue-rotate(26deg) brightness(103%) contrast(97%); /* Purple color */
}

/* Plan card active state (when clicked) - unified for both left and right */
.plan-card.active::before {
    display: none;
}

.plan-card.active .plan-arrow {
    display: none;
}

.plan-card.active .plan-card-title-default {
    opacity: 0;
    display: none;
}

.plan-card.active .plan-card-title-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease 0.6s, visibility 0s 0.6s;
}

.plan-card.active {
    background: transparent;
    width: calc(100% - 450px);
    padding-top: 60px;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 40px;
    height: auto;
    min-height: auto;
    padding-bottom: 60px;
    transition: width 1s ease, padding 1s ease, height 1s ease, min-height 1s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.plan-card.active .plan-content {
    display: block !important;
    text-align: left;
    opacity: 1;
    visibility: visible;
    max-height: 1500px;
    transition: opacity 0.3s ease 0.6s, visibility 0s 0.6s, max-height 0.6s ease;
}

.plan-card.shrink {
    width: 450px;
    flex-shrink: 0;
    height: auto;
    min-height: 650px;
    transition: width 1s ease, height 1s ease;
}

.plan-content {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s, max-height 0.6s ease;
}

.plan-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 50px;
    margin-top: 0px;
}

.plan-slogan {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 30px;
}

.plan-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 30px;
}

.plan-closing {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 22px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 40px;
}

.plan-benefits {
    display: flex;
    gap: 30px;
    width: 100%;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.benefit-icon {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 15px;
}

.benefit-line {
    width: 200px;
    height: 1px;
    background-color: var(--black);
    margin-bottom: 15px;
}

.benefit-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--black);
    line-height: 1.6;
    max-width: 200px;
    text-align: left;
}

/* responsive tweak - smaller screens */
@media (max-width: 520px) {
    .logo-wrap::before {
        width: 260px;
        height: 110px;
        border-radius: 14px;
    }
    .main-logo {
        height: 90px;
    }
    h1 {font-size: 20px;padding: 0 40px;}
    
}
/* ==================== URNAS SECTION ==================== */
.urnas-section {
    background-color: var(--white);
    padding: 0 20px 50px;
}

.urnas-inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
}

.urnas-title {
    text-align: center;
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 58px;
    margin-top: 58px;
}

.urnas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.urna-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.333% - 20px);
    min-width: 440px;
}

.urna-link {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.urna-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: transform 0.35s ease;
    overflow: hidden;
    display: block;
}

.urna-link:hover .urna-image {
    transform: scale(0.95);
}

.urna-info {
    padding-left: 10px;
    text-align: left;
}

.urna-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
    padding-left: 3px;
}

.urna-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 3px;
}

.urna-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    
}

.urna-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 12px;
    padding: 4px 12px;
    transition: background-color 0.3s ease;
}

.urna-tag:hover {
    background-color: var(--accent-bg);
}

.urna-separator {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 4px;
    vertical-align: middle;
}

/* ==================== URNAS PAGE ==================== */
.urnas-title-page {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    background-color: var(--accent-bg);
    padding: 80px 20px 60px 20px;
    margin: 0 0 80px 0;
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
}

.urnas-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
    row-gap: 60px;
    justify-items: center;
}

/* ==================== ABOUT PAGE ==================== */
.about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-top-container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: stretch;
    padding-top: 80px;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.about-intro {
    padding-top: 0;
}

.about-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 30px;
    margin-top: 0;
}

.about-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.about-intro .about-text {
    text-align: justify;
}

.about-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.about-reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-reason-number {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 48px;
    color: var(--secondary);
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-reason-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

/* Responsive design for about page */
@media (max-width: 1024px) {
    .about-top-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .about-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-intro,
    .about-bottom-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }
    
    .about-top-container {
        gap: 30px;
        margin-bottom: 30px;
    }

    .about-image {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 28px;
    }

    .about-reason-text {
        text-align: center;
    }

    .about-reason-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .about-reason-number {
        font-size: 36px;
        min-width: 50px;
        min-height: 50px;
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background-color: var(--accent-bg);
    padding: 80px 40px;
    text-align: center;
}

.gallery-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    margin: 0 0 50px 0;
    text-align: center;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.carousel-image-wrapper {
    flex: 1;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.carousel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.carousel-arrow {
    background-color: var(--white);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--main);
    border: 1px solid var(--secondary);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-image-wrapper {
        height: 300px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-image {
        max-height: 300px;
    }
}

/* ==================== IMAGE MODAL ==================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--main);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 95%;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    background-color: var(--accent-bg);
    padding: 160px 40px 80px 40px;
    min-height: 100vh;
}

.contact-title {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    text-align: center;
    margin: 0 0 20px 0;
}

.contact-subtitle {
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-style: italic;
    font-size: 18px;
    color: var(--secondary);
    text-align: center;
    margin: 0 0 50px 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black);
    padding: 15px;
    border: 1px solid var(--secondary);
    border-radius: 16px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--main);
    box-shadow: 0 0 0 3px rgba(191, 180, 255, 0.2);
    background-color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Poppins', sans-serif;
}

.form-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 15px 40px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-button:hover {
    background-color: var(--main);
    border-color: var(--main);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-button:active {
    transform: translateY(0);
}

.contact-alternative {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-alternative p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--black);
    margin: 0;
}

.contact-phone {
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--main);
}

.form-message {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
    min-height: 20px;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #f44336;
}

@media (max-width: 768px) {
    .contact-section {
        
    padding: 130px 20px 20px 20px;
    }
    
    .contact-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-container {
        max-width: 100%;
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 24px 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0px 20px 0px 100px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    height: 100px;
    width: auto;
    padding-right: 260px;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 12px;
    margin: 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-link:hover { color: var(--main); }

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    flex: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 6px;
    text-decoration: underline;
}

.footer-icon i {
    margin-right: 8px;
    transition: color 0.2s ease;
}

.footer-icon:hover i {
    color: var(--main);
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background-color: var(--accent-bg);
    padding: 80px 40px;
    scroll-margin-top: 50px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-title {
    text-align: left;
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    margin: 0;
}

.faq-subtitle {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 400px;
}

.faq-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 300px;
}

.faq-button:hover {
    background-color: var(--main);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--black);
}

.faq-icon {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 24px 32px 24px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    margin: 0;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    text-align: center;
    font-family: Optima, 'Segoe UI', Candara, 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: var(--black);
    margin: 0 0 60px 0;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Review Cards Grid */
.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.review-author {
    flex: 1;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    margin: 0;
}

/* Review Rating */
.review-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.review-rating .fa-star {
    color: #fbbc04;
    font-size: 14px;
}

/* Review Text */
.review-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Review Source */
.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #666;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.review-source .fa-google {
    color: #4285f4;
    font-size: 14px;
}

/* Reviews Content */
.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

.reviews-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--black);
    line-height: 1.8;
    margin: 0;
}

.reviews-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    max-width: fit-content;
    transition: all 0.3s ease;
}

.reviews-button:hover {
    background-color: var(--main);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== VER MÁS SECTION ==================== */
.ver-mas-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 100px 20px;
    background-color: var(--white);
}

.ver-mas-btn {
    display: inline-block;
    padding: 12px 132px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ver-mas-btn:hover {
    background-color: var(--main);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--secondary);
}

.ver-mas-btn:active {
    transform: translateY(0);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    /* Plans section */
    .plan-card {
        padding-top: 60px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .plan-card.active {
        padding-left: 40px;
        padding-right: 30px;
    }
    
    .plan-benefits {
        flex-direction: column;
        gap: 25px;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    /* Reviews - 2 columns on tablets */
    .reviews-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Urnas grid - 2 columns on tablet */
    .urnas-grid {
        gap: 30px;
    }
    
    .urna-item {
        width: calc(50% - 15px);
        min-width: 250px;
    }
    
    .urna-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    /* Services grid - stack vertically */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    /* Plans section - stack vertically */
    .plans-grid {
        flex-direction: column;
    }
    
    .plan-card {
        width: 100% !important;
        min-height: 500px;
        padding: 40px 30px;
    }
    
    .plan-card.active {
        width: 100% !important;
        padding: 40px 30px;
    }
    
    .plan-card.shrink {
        width: 100% !important;
        min-height: 500px;
    }
    
    .plan-card-title {
        font-size: 26px;
    }
    
    .plan-card-title-default {
        max-width: 80%;
    }

    .plan-arrow {
        width: 40px;
    }
    
    .plan-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Urnas grid - 1 column on mobile */
    .urnas-grid {
        gap: 25px;
        max-width: 400px;
    }
    
    .urna-item {
        width: 100%;
        min-width: auto;
    }
    
    .urna-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    .urna-info {
        text-align: left;
        padding-left: 0;
    }
    
    .urna-name {
        text-align: left;
        padding-left: 0;
    }
    
    .urna-tags {
        justify-content: left;
    }
    
    /* Urnas page grid - 1 column on mobile */
    .urnas-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
        row-gap: 40px;
    }
    
    /* FAQ */
    .faq-section {
        padding: 60px 40px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        text-align: center;        
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .faq-title {
        font-size: 28px;
        text-align: center;
    }
    
    .faq-subtitle {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }
    
    /* Reviews */
    .reviews-section {
        padding: 60px 40px;
    }
    
    .reviews-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .reviews-container {
        gap: 40px;
    }
    
    .reviews-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-inner {
        margin: 0 20px;
        flex-direction: column;
    }
    
    .footer-logo {
        height: 80px;
        padding-right: 0;
    }
    
    .footer-columns {
        width: 100%;
    }
}

/* Phone (max 520px) */
@media (max-width: 520px) {
    /* Hero */
    .hero-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-button {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    /* Purpose */
    .purpose-section {
        padding: 20px 26px;
    }
    
    .purpose-inner p {
        font-size: 14px;
    }
    
    /* Services */
    .plan-arrow {
        width: 34px;
    }


    .services-section {
        padding: 40px 26px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 16px 22px;
        gap: 12px;
    }
    
    .service-icon {
        width: 38px;
        height: 38px;
    }
    
    .service-icon img {
        width: 20px;
        height: 20px;
    }
    
    .service-label {
        font-size: 16px;
    }
    
    .service-content {
        font-size: 14px;
    }
    
    .service-content-wrap {
        margin-top: 60px;
    }
    
    /* Plans */
    .plans-title {
        font-size: 28px;
    }
    
    .plans-title-container {
        height: 120px;
    }
    
    .plan-card {
        min-height: 200px;
        height: 200px;
        padding: 30px 20px;
    }
    
    .plan-card.active {
        padding: 30px 20px;
        height: auto;
        min-height: auto;
    }
    
    .plan-card.shrink {
        min-height: 200px;
        height: 200px;
    }
    
    .plan-card-title {
        font-size: 22px;
    }
    
    .plan-brand {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .plan-slogan {
        font-size: 15px;
    }
    
    .plan-text {
        font-size: 16px;
    }
    
    .plan-closing {
        font-size: 18px;
    }
    
    .benefit-icon {
        font-size: 28px;
    }
    
    .benefit-line {
        width: 100%;
    }
    
    .benefit-text {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Urnas - single column */
    .urnas-section {
        padding: 40px 16px;
    }
    
    .urnas-title {
        font-size: 28px;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .urnas-inner {
        padding-top: 10px;
    }
    
    .urnas-grid {
        gap: 30px;
    }
    
    .urna-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        min-width: auto;
    }
    
    .urna-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    /* Ver Más */
    .ver-mas-section {
        padding: 30px 16px 60px 16px;
    }
    
    .ver-mas-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    /* Footer */
    .site-footer {
        padding: 40px 16px;
    }
    
    .footer-inner {
        align-items: center;
    }
    
    .footer-top {
        align-items: center;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-copy {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-columns {
        align-items: center;
    }
    
    .footer-col {
        align-items: center;
        text-align: center;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    /* Floating WhatsApp - smaller on mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}
