/* ============================================
   ARQUITETURA DO SER by Marisa Gomes
   Premium Landing Page Stylesheet
   ============================================ */

/* CSS Variables - Premium Palette */
:root {
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --gold-dark: #A68B4B;
    --beige: #F5F0E8;
    --beige-dark: #E8E0D4;
    --cream: #FAF8F5;
    --warm-white: #FDFCFA;
    --nude: #D4B8A8;
    --nude-dark: #B89A8A;
    --brown: #6B5B4F;
    --brown-light: #8A7A6E;
    --brown-dark: #4A3F36;
    --charcoal: #2C2A28;
    --text-primary: #3D3B39;
    --text-secondary: #6B6865;
    --text-light: #9A9794;
    --white: #FFFFFF;
    --shadow-light: rgba(107, 91, 79, 0.06);
    --shadow-medium: rgba(107, 91, 79, 0.1);
    --shadow-dark: rgba(107, 91, 79, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px var(--shadow-light);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    background: transparent !important;
    mix-blend-mode: normal;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 30px;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--gold-dark);
    background: rgba(201, 169, 110, 0.08);
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--nude) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 184, 122, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 184, 168, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 184, 168, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    background: transparent !important;
    mix-blend-mode: multiply;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge .badge-emphasis {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.25);
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(201, 169, 110, 0.08);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 169, 110, 0.45);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--brown-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid var(--beige-dark);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-light);
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--gold);
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.hero-scroll a:hover {
    background: var(--gold);
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light .section-label,
.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 12px auto 0;
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION - CAROUSEL
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--warm-white);
}

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 50px var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide .gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.carousel-slide .gallery-images {
    display: flex;
    position: relative;
    height: 420px;
}

.gallery-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-placeholder.before {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.gallery-placeholder.after {
    background: linear-gradient(135deg, var(--nude) 0%, var(--nude-dark) 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--brown-light);
}

.placeholder-content i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.placeholder-content span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.placeholder-content small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.gallery-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-medium);
    z-index: 2;
}

.gallery-divider span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.gallery-caption {
    padding: 28px;
    text-align: center;
}

.gallery-caption h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -26px;
}

.carousel-next {
    right: -26px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--beige-dark);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.carousel-dot:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.2);
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}

.gallery-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--beige);
    padding: 24px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    max-width: 900px;
    margin: 0 auto;
}

.gallery-disclaimer i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.gallery-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.method {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.method-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-5px);
}

.method-card.highlight {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.2);
}

.method-card.highlight:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.4);
}

.method-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.method-card:hover .method-icon {
    background: rgba(201, 169, 110, 0.25);
    transform: scale(1.05);
}

.method-icon i {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.method-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.method-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--beige) 0%, var(--nude) 100%);
    color: var(--brown-light);
    transition: var(--transition);
}

.service-card:hover .service-placeholder {
    transform: scale(1.05);
}

.service-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition-fast);
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--warm-white);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-title {
    text-align: left;
}

.why-us-content .section-label {
    display: inline-block;
}

.why-us-content .section-label::after {
    margin: 12px 0 0;
}

.why-us-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-us-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.why-us-item:hover .why-us-icon {
    background: rgba(201, 169, 110, 0.2);
    transform: scale(1.05);
}

.why-us-icon i {
    color: var(--gold);
    font-size: 1.1rem;
}

.why-us-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.why-us-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-us-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.visual-placeholder {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brown-light);
    text-align: center;
    padding: 24px;
}

.visual-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.visual-placeholder span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.visual-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beige) 0%, var(--nude) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-light);
}

.author-avatar i {
    font-size: 1.2rem;
}

.author-info h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.trust-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-label {
    display: inline-block;
}

.contact-info .section-label::after {
    margin: 12px 0 0;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-feature i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 4px;
}

.contact-feature h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 50px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--beige-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--warm-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6865' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    font-size: 0.75rem;
    color: #c75a5a;
    margin-top: 6px;
    min-height: 18px;
    transition: var(--transition-fast);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c75a5a;
    background: rgba(199, 90, 90, 0.03);
}

.form-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--beige-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.consent-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--white);
    padding: 18px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201, 169, 110, 0.45);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit i {
    font-size: 0.9rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease;
}

.form-success.visible {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: #6ab04c;
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    background: transparent !important;
    mix-blend-mode: normal;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-contact h4,
.footer-hours h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact p,
.footer-hours p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-contact i,
.footer-hours i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-links a i {
    color: var(--white);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.footer-note {
    font-style: italic;
    opacity: 0.6;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

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

.whatsapp-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i {
    font-size: 1.4rem;
}

.whatsapp-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-visual {
        order: -1;
    }
    
    .visual-placeholder {
        height: 350px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info .section-title,
    .contact-info .section-label::after {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-features {
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px var(--shadow-dark);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 20px;
    }
    
    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-logo img {
        max-width: 160px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .method-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-wrapper {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .carousel-slide .gallery-images {
        height: 320px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .method-card,
    .service-card,
    .testimonial-card {
        padding: 24px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LOADING STATE
   ============================================ */
.btn-submit.loading {
    pointer-events: none;
}

.btn-submit.loading span,
.btn-submit.loading i {
    opacity: 0;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* ============================================
   CARROSSEL LIMPO — 1 FOTO POR SLIDE
   ============================================ */

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 40px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.gallery-photo-only {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
}

.gallery-single-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    overflow: hidden;
}

.gallery-result-img {
    width: auto;
    max-width: 500px;
    max-height: 550px;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: none !important;
}

/* Setas desktop */
.carousel-btn {
    z-index: 20;
}

.carousel-prev {
    left: 60px;
}

.carousel-next {
    right: 60px;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-wrapper {
        max-width: 100%;
        padding: 0 8px;
    }

    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .gallery-single-image {
        width: 100%;
        height: 360px;
    }

    .gallery-result-img {
        width: auto;
        height: 100%;
        max-width: none;
        max-height: 360px;
        object-fit: cover;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }
}