/* ===== VARIABLES ===== */
:root {
    --turquoise: #06D6A0;
    --turquoise-dark: #04B589;
    --turquoise-light: #7CE8C8;
    --coral: #FF6B6B;
    --coral-dark: #E85A5A;
    --coral-light: #FFA0A0;
    --yellow: #FFD93D;
    --yellow-soft: #FFE873;
    --dark: #1A2E35;
    --dark-soft: #2C3E47;
    --gray: #5A6970;
    --gray-light: #B8C2C8;
    --cream: #FFF5EE;
    --cream-soft: #FFFAF5;
    --bg: #FAFCFF;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --gradient-turquoise: linear-gradient(135deg, #06D6A0 0%, #04B589 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-mix: linear-gradient(135deg, #06D6A0 0%, #FFD93D 50%, #FF6B6B 100%);
    --gradient-dark: linear-gradient(135deg, #1A2E35 0%, #2C3E47 100%);
    --shadow-sm: 0 4px 12px rgba(26, 46, 53, 0.06);
    --shadow-md: 0 12px 32px rgba(26, 46, 53, 0.1);
    --shadow-lg: 0 24px 60px rgba(26, 46, 53, 0.15);
    --shadow-turquoise: 0 16px 40px rgba(6, 214, 160, 0.3);
    --shadow-coral: 0 16px 40px rgba(255, 107, 107, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --blob-1: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --blob-2: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --blob-3: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

/* ===== PRELOADER LETRAS REBOTANDO ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatBubble 6s ease-in-out infinite;
}

.bubble-1 { width: 200px; height: 200px; background: var(--turquoise); top: 10%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 150px; height: 150px; background: var(--coral); top: 60%; right: 15%; animation-delay: 1s; }
.bubble-3 { width: 100px; height: 100px; background: var(--yellow); bottom: 15%; left: 20%; animation-delay: 2s; }
.bubble-4 { width: 250px; height: 250px; background: var(--turquoise); bottom: -50px; right: -50px; animation-delay: 3s; opacity: 0.08; }

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-letters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.preloader-letter {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    font-weight: 400;
    color: var(--white);
    display: inline-block;
    transform: translateY(-100vh);
    animation: dropLetter 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    line-height: 1;
}

.preloader-letter:nth-child(1) { animation-delay: 0.1s; color: var(--turquoise); }
.preloader-letter:nth-child(2) { animation-delay: 0.2s; color: var(--white); }
.preloader-letter:nth-child(3) { animation-delay: 0.3s; color: var(--coral); }
.preloader-letter:nth-child(4) { animation-delay: 0.4s; color: var(--white); }
.preloader-letter:nth-child(5) { animation-delay: 0.5s; color: var(--yellow); }
.preloader-letter:nth-child(6) { animation-delay: 0.6s; color: var(--white); }
.preloader-letter:nth-child(7) { animation-delay: 0.7s; color: var(--turquoise); }
.preloader-letter:nth-child(8) { animation-delay: 0.8s; color: var(--white); }
.preloader-letter:nth-child(9) { animation-delay: 0.9s; color: var(--coral); }

@keyframes dropLetter {
    0% { transform: translateY(-100vh); opacity: 0; }
    60% { transform: translateY(20px); opacity: 1; }
    80% { transform: translateY(-10px); }
    100% { transform: translateY(0); opacity: 1; }
}

.preloader-tagline {
    color: var(--gray-light);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    overflow: hidden;
    border-right: 2px solid var(--turquoise);
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    width: 0;
    animation:
        typingTagline 2s steps(20) 1.2s forwards,
        blinkBorder 0.8s infinite step-end 1.2s;
}

@keyframes typingTagline {
    from { width: 0; }
    to { width: 16ch; }
}

@keyframes blinkBorder {
    50% { border-color: transparent; }
}

.preloader-progress {
    width: 240px;
    margin: 0 auto;
    position: relative;
}

.preloader-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.preloader-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--turquoise), var(--coral), var(--yellow));
    background-size: 200% 100%;
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s ease;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.preloader-progress-text {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: 12px;
    font-weight: 500;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

.text-turquoise { color: var(--turquoise); }
.text-coral { color: var(--coral); }
.text-gradient {
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--turquoise);
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--turquoise);
    transform: scale(1.15);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(26, 46, 53, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-turquoise);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    33% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    66% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
}

.logo-accent {
    color: var(--turquoise);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 8px;
    background: var(--turquoise);
    z-index: -1;
    opacity: 0.4;
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--turquoise-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-coral);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-turquoise);
    color: var(--white);
    box-shadow: var(--shadow-turquoise);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(6, 214, 160, 0.5);
}

.btn-coral {
    background: var(--gradient-coral);
    color: var(--white);
    box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.5);
}

.btn-outline {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--cream);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-blob-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--turquoise);
    border-radius: var(--blob-2);
    opacity: 0.15;
    top: -150px;
    right: -150px;
    animation: morphBlob 12s ease-in-out infinite, rotateBlob 30s linear infinite;
}

.hero-blob-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--coral);
    border-radius: var(--blob-1);
    opacity: 0.12;
    bottom: -100px;
    left: -100px;
    animation: morphBlob 10s ease-in-out infinite reverse, rotateBlob 25s linear infinite reverse;
}

@keyframes rotateBlob {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--turquoise-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.hero-tag i {
    color: var(--yellow);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--coral);
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
    opacity: 0.5;
    transform: skewX(-5deg);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--dark);
    line-height: 1;
}

.stat-number-suffix {
    color: var(--turquoise);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
}

/* Hero Visual - bento style */
.hero-visual {
    position: relative;
    height: 580px;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
}

.bento-card {
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.bento-1 {
    background: var(--gradient-turquoise);
    color: var(--white);
    grid-row: span 2;
}

.bento-2 {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.bento-3 {
    background: var(--gradient-coral);
    color: var(--white);
}

.bento-4 {
    background: var(--yellow);
    color: var(--dark);
    grid-column: span 2;
}

.bento-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.bento-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    line-height: 1.1;
}

.bento-subtitle {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 6px;
}

.bento-1 .bento-icon { font-size: 4rem; }
.bento-1 .bento-title { font-size: 2.2rem; }

/* ===== SECTION COMMON ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    color: var(--turquoise-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-tag i {
    color: var(--coral);
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-title-highlight {
    color: var(--coral);
    position: relative;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray);
}

/* ===== SERVICES ===== */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--turquoise-light);
    border-radius: var(--blob-1);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 0.3;
    transform: scale(1.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-turquoise);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
    animation: morphBlob 8s ease-in-out infinite;
}

.service-card:nth-child(2n) .service-icon {
    background: var(--gradient-coral);
}

.service-card:nth-child(3n) .service-icon {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-main {
    background: var(--gradient-turquoise);
    height: 560px;
    border-radius: var(--blob-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 200px;
    box-shadow: var(--shadow-lg);
    animation: morphBlob 12s ease-in-out infinite;
}

.about-decor-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--yellow);
    border-radius: var(--blob-3);
    z-index: -1;
    animation: morphBlob 10s ease-in-out infinite reverse;
}

.about-decor-2 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: var(--coral);
    border-radius: 50%;
    z-index: -1;
}

.about-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--coral);
    line-height: 1;
}

.about-stat-text {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 36px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-turquoise);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-text {
    font-weight: 500;
    color: var(--dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--turquoise);
    border-radius: var(--blob-2);
    opacity: 0.1;
    animation: morphBlob 15s ease-in-out infinite, rotateBlob 40s linear infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: var(--blob-1);
    opacity: 0.1;
    animation: morphBlob 12s ease-in-out infinite reverse, rotateBlob 35s linear infinite reverse;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--turquoise);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.rating-display-stars {
    color: var(--yellow);
    font-size: 1.4rem;
}

.rating-display-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 30px;
    border-radius: 28px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: var(--turquoise);
}

.testimonial-stars {
    color: var(--yellow);
    margin-bottom: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-coral);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    animation: morphBlob 8s ease-in-out infinite;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA ===== */
.cta-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}

.cta-content {
    background: var(--gradient-turquoise);
    color: var(--white);
    padding: 80px 60px;
    border-radius: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--blob-1);
    animation: morphBlob 10s ease-in-out infinite, rotateBlob 25s linear infinite;
}

.cta-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--blob-2);
    animation: morphBlob 12s ease-in-out infinite reverse, rotateBlob 30s linear infinite reverse;
}

.cta-content > * {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.15;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--turquoise-dark);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-turquoise);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: morphBlob 8s ease-in-out infinite;
}

.info-card:nth-child(2) .info-icon { background: var(--gradient-coral); }
.info-card:nth-child(3) .info-icon { background: var(--whatsapp); }
.info-card:nth-child(4) .info-icon { background: linear-gradient(135deg, var(--yellow), #FFA500); color: var(--dark); }

.info-card h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.info-card p,
.info-card a {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream-soft);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--cream);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--turquoise);
    border-radius: var(--blob-1);
    opacity: 0.15;
    animation: morphBlob 10s ease-in-out infinite;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: var(--coral);
    border-radius: var(--blob-2);
    opacity: 0.12;
    animation: morphBlob 12s ease-in-out infinite reverse;
}

.page-banner h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: -1.5px;
}

.page-banner h1 .highlight {
    color: var(--coral);
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--turquoise-dark);
    font-weight: 500;
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--turquoise);
    border-radius: var(--blob-1);
    opacity: 0.05;
    animation: morphBlob 15s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-tagline {
    margin-bottom: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--turquoise);
    color: var(--dark);
    transform: translateY(-4px) scale(1.1);
}

.footer-col h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a:hover {
    color: var(--turquoise);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--turquoise);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--turquoise);
    margin: 0 12px;
}

/* ===== FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: morphBlob 8s ease-in-out infinite, pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover { transform: scale(1.1); }

.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    animation: morphBlob 8s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 580px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    display: none;
    border: 2px solid var(--turquoise);
}

.cookie-banner.show {
    display: block;
    animation: bounceUpCookie 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.hide {
    animation: slideDownCookie 0.4s ease forwards;
}

@keyframes bounceUpCookie {
    0% { transform: translateY(150%); opacity: 0; }
    60% { transform: translateY(-15px); opacity: 1; }
    100% { transform: translateY(0); }
}

@keyframes slideDownCookie {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(150%); opacity: 0; }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-coral);
    color: var(--white);
    border-radius: var(--blob-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    animation: morphBlob 6s ease-in-out infinite;
}

.cookie-text {
    flex: 1;
    min-width: 220px;
}

.cookie-text h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--gray);
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 14px;
}

.btn-cookie {
    padding: 10px 22px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-cookie-primary {
    background: var(--gradient-turquoise);
    color: var(--white);
}

.btn-cookie-primary:hover { transform: translateY(-2px); }

.btn-cookie-secondary {
    background: var(--cream);
    color: var(--dark);
}

.btn-cookie-secondary:hover { background: var(--gray-light); }

.cookie-link {
    color: var(--turquoise-dark);
    font-size: 0.85rem;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 500;
}

/* ===== LEGAL ===== */
.legal-content {
    background: var(--bg);
    padding: 90px 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.legal-wrapper h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--dark);
    font-size: 1.8rem;
    margin: 36px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream);
}

.legal-wrapper h2:first-child { margin-top: 0; }

.legal-wrapper h3 {
    color: var(--turquoise-dark);
    font-size: 1.15rem;
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-wrapper p,
.legal-wrapper li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.legal-wrapper ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-wrapper ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: var(--turquoise-dark);
    text-decoration: underline;
}

.legal-wrapper .last-update {
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--turquoise-dark);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 32px;
    display: inline-block;
}

.legal-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    border-radius: 14px;
    overflow: hidden;
}

.legal-wrapper table th,
.legal-wrapper table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--cream);
}

.legal-wrapper table th {
    background: var(--gradient-turquoise);
    color: var(--white);
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
}

[data-aos="fade-up"] { transform: translateY(50px); }
[data-aos="fade-down"] { transform: translateY(-50px); }
[data-aos="fade-left"] { transform: translateX(-50px); }
[data-aos="fade-right"] { transform: translateX(50px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="rotate-in"] { transform: rotate(-15deg) scale(0.9); }
[data-aos="bounce-up"] { transform: translateY(60px) scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual { height: 480px; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-info { gap: 16px; font-size: 0.75rem; }
    .top-info span:nth-child(2),
    .top-info span:nth-child(3) { display: none; }

    .nav {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 24px;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav.active { transform: translateX(0); }

    .btn-call { padding: 12px 16px; }
    .btn-call span:not(:first-child) { display: none; }

    .menu-toggle { display: flex; }

    section { padding: 70px 0; }

    .hero { padding: 50px 0 80px; }
    .hero-stats { gap: 28px; }
    .stat-number { font-size: 2.5rem; }

    .hero-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-1 { grid-row: auto; }
    .bento-4 { grid-column: auto; }

    .preloader-letter { font-size: 3.2rem; }

    .about-features { grid-template-columns: 1fr; }
    .about-img-main { height: 400px; font-size: 130px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }

    .footer-content { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }

    .legal-wrapper { padding: 30px; }

    .cta-content { padding: 50px 30px; }

    .whatsapp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 90px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }

    .preloader-letter { font-size: 2.4rem; }
    .preloader-tagline { font-size: 0.75rem; letter-spacing: 4px; }
}
