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

/* ===== GAZPACHO FONT ===== */
@font-face {
    font-family: 'Gazpacho';
    src: url('assets/Gazpacho/Gazpacho-Font-Family/Gazpacho-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gazpacho';
    src: url('assets/Gazpacho/Gazpacho-Font-Family/Gazpacho-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gazpacho';
    src: url('assets/Gazpacho/Gazpacho-Font-Family/Gazpacho-Bold.woff2') format('woff2');
    font-weight: 600 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gazpacho';
    src: url('assets/Gazpacho/Gazpacho-Font-Family/Gazpacho-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #CD5940;
    --primary-dark: #B34F4F;
    --primary-light: #ECBEB1;
    --secondary: #FFEBE5;
    --secondary-alt: #EFE4DA;
    --accent: #C7928B;
    --text-dark: #220700;
    --text-light: #5C3A2E;
    --border: #EFE4DA;
    --success: #4CAF50;
    --error: #F44336;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #FFF8F5;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(205, 89, 64, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(179, 79, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gazpacho', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

strong {
    color: var(--primary);
    font-weight: 600;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 89, 64, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 89, 64, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-sticky {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-sticky:hover {
    background-color: var(--primary-dark);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 5rem var(--spacing-lg) 4rem;
    text-align: center;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
    opacity: 0.2;
    max-height: 350px;
    animation: videoZoom 20s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-video {
        height: 420px;
        max-height: 420px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 320px;
        max-height: 320px;
    }
}

@keyframes videoZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-bg-pattern {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(205, 89, 64, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.profile-image {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.avatar-img {
    width: 280px;
    height: 280px;
    margin: 0 auto 1rem;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    object-fit: cover;
    border: none;
    box-shadow: 0 20px 60px rgba(205, 89, 64, 0.4);
    display: block;
    animation: morph 8s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 55% 45% 25% 75% / 40% 70% 30% 60%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(205, 89, 64, 0.4);
    }
    50% {
        box-shadow: 0 20px 80px rgba(205, 89, 64, 0.6);
    }
}

.profile-name {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.profile-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.headline {
    margin: 1.75rem 0 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.subheadline {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0 auto 1.25rem;
    max-width: 560px;
    position: relative;
    z-index: 2;
    line-height: 1.75;
}

.credentials-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}

/* ===== AUTHORITY SECTION ===== */
.authority {
    padding: 3.5rem var(--spacing-lg);
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    text-align: center;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.credential-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.credential-card .icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    stroke-width: 1.5;
}

.credential-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 3rem var(--spacing-lg);
    text-align: center;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* ===== SECTION BADGE ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 4rem var(--spacing-lg);
    text-align: center;
}

.section-title {
    margin-bottom: 0.6rem;
}

.section-description {
    color: var(--text-light);
    margin: 0 auto 2rem;
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.projects-swiper {
    margin-top: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.projects-swiper .swiper-slide,
.obra-swiper .swiper-slide {
    width: auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 280px;
    width: 280px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(1);
}

.project-card:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(0.85);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    padding: 2rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay span {
    font-weight: 600;
    color: white;
    display: block;
    animation: slideUp 0.5s ease-out 0.1s both;
}

/* ===== BEHIND SCENES SECTION ===== */
.behind-scenes {
    padding: 4rem var(--spacing-lg);
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    text-align: center;
}

.obra-swiper {
    margin-top: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.obra-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    height: 210px;
    width: 280px;
}

.obra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    bottom: 1rem !important;
}

.swiper-pagination-bullet {
    background-color: var(--primary) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.carousel-pause-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-pause-btn:hover {
    background-color: var(--primary-dark);
}

.carousel-counter {
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
    text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 4rem var(--spacing-lg);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    text-align: left;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(205, 89, 64, 0.05) 0%, rgba(205, 89, 64, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-slow);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(205, 89, 64, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(205, 89, 64, 0.08) 0%, rgba(205, 89, 64, 0.04) 100%);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-number {
    opacity: 0.5;
    transform: scale(1.1);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ===== LINKS SECTION ===== */
.links-section {
    padding: 3.5rem var(--spacing-lg);
    text-align: center;
}

.links-title {
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(205, 89, 64, 0.05) 100%);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: left 0.4s ease;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(205, 89, 64, 0.2);
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 4rem var(--spacing-lg);
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    text-align: center;
}

.reviews-title {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-swiper {
    margin-top: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    box-shadow: 0 12px 32px rgba(205, 89, 64, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.stars {
    color: #FFB800;
    font-size: 0.9rem;
}

.review-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: left;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== EXIT POPUP ===== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 400px;
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.exit-popup-content h3 {
    margin-bottom: 1rem;
}

.exit-popup-content p {
    margin-bottom: 1.5rem;
}

/* ===== LGPD BANNER ===== */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
}

.lgpd-banner.show {
    display: block;
}

.lgpd-banner a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #220700;
    color: white;
    padding: 2.5rem var(--spacing-lg);
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social:hover {
    background-color: var(--primary);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    flex-shrink: 0;
}

.chat-header-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-header-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.chat-header-status {
    font-size: 0.75rem;
    color: var(--text-light);
}

.chat-header-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.chat-header-close:hover {
    background: var(--secondary);
    color: var(--text-dark);
}

.chat-modal {
    display: flex;
    flex-direction: column;
}

.chat-container {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    min-height: 300px;
}

.chat-options {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-option {
    padding: 1rem;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.chat-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 89, 64, 0.2), transparent);
    transition: left 0.5s ease;
}

.chat-option:hover::before {
    left: 100%;
}

.chat-option:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 6rem var(--spacing-2xl);
        gap: 4rem;
        min-height: 600px;
        justify-content: center;
        align-items: center;
    }

    .hero > *:not(.hero-video):not(.hero-bg-pattern) {
        position: relative;
        z-index: 2;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .hero-video {
        max-height: 100%;
        opacity: 0.15;
    }

    .profile-image {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .avatar-img {
        width: 340px;
        height: 340px;
    }

    .headline {
        margin: 0 0 1rem;
        font-size: 3.5rem;
    }

    .subheadline {
        margin: 0 0 1.25rem;
        font-size: 1.1rem;
    }

    .credentials-text {
        font-size: 1rem;
    }

    .credentials {
        grid-template-columns: repeat(6, 1fr);
    }

    .project-card {
        height: 340px;
        width: 340px;
    }

    .obra-card {
        height: 260px;
        width: 360px;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .review-card {
        width: 380px;
    }

    .reviews-swiper .swiper-slide {
        width: 380px;
    }

    .social-links {
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 2.5rem;
        right: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 var(--spacing-2xl);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .project-card {
        height: 380px;
        width: 380px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .hero {
        padding: 2rem var(--spacing-md) 2rem;
        min-height: 500px;
        justify-content: flex-end;
    }

    .avatar-img {
        width: 200px;
        height: 200px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .headline {
        font-size: 2rem;
        margin-top: 6rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .credentials {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-link {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
    }

    .exit-popup-content {
        margin: 1rem;
    }

    .modal-content {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .chat-modal {
        height: 100%;
    }

    .chat-container {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }

    .chat-options {
        flex-shrink: 0;
        max-height: 45vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: 1.5rem var(--spacing-sm) 1.5rem;
        min-height: 400px;
        justify-content: flex-end;
    }

    .avatar-img {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 1.2rem;
    }

    .headline {
        font-size: 1.5rem;
        margin-top: 6rem;
    }

    .subheadline {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .credentials {
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .step-number {
        font-size: 1.5rem;
        min-width: 50px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .sticky-cta {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }

    .sticky-cta .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.scale-in {
    animation: scaleIn 0.4s ease-out;
}
