/* =============================================
   SOLUÇÕES PIMENTEL - Luxury Notary Website
   ============================================= */

:root {
    --navy: #0a1f44;
    --navy-dark: #061530;
    --navy-light: #142a5c;
    --gold: #c9a44c;
    --gold-light: #e0c078;
    --gold-dark: #a8862d;
    --cream: #f8f4ec;
    --cream-dark: #eee6d3;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #b8b8b8;
    --text: #1a1a1a;
    --brazil-green: #009c3b;
    --brazil-yellow: #ffdf00;
    --shadow-sm: 0 4px 12px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 31, 68, 0.12);
    --shadow-lg: 0 20px 50px rgba(10, 31, 68, 0.18);
    --shadow-gold: 0 8px 30px rgba(201, 164, 76, 0.35);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Montserrat', -apple-system, sans-serif;
}

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

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

body {
    font-family: var(--sans);
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

.section-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.light::before { background: var(--gold-light); }

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}
.section-header .section-eyebrow { padding-left: 0; }
.section-header .section-eyebrow::before { display: none; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
    background-size: 200% 100%;
}
.btn-gold:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 164, 76, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--navy);
}
.btn-sm { padding: 12px 24px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 31, 68, 0.98);
    border-bottom-color: rgba(201, 164, 76, 0.2);
    box-shadow: var(--shadow-md);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
}
.nav-logo img { width: 42px; height: 42px; }
.nav-logo em { color: var(--gold); font-style: italic; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    letter-spacing: 0.5px;
    position: relative;
}
.nav-menu a:not(.btn-nav-cta):hover { color: var(--gold-light); }
.nav-menu a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-menu a:not(.btn-nav-cta):hover::after { transform: scaleX(1); }

.btn-nav-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    padding: 10px 22px !important;
    border-radius: 2px;
    font-weight: 600 !important;
    margin-left: 12px;
}
.btn-nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(6, 21, 48, 0.92) 0%, rgba(10, 31, 68, 0.88) 100%),
        url('../images/boston-hero.jpg') center center / cover no-repeat;
    color: var(--cream);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--brazil-green) 0%, var(--brazil-yellow) 50%, var(--brazil-green) 100%);
    z-index: 3;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--brazil-green) 0%, var(--brazil-green) 40%, var(--brazil-yellow) 40%, var(--brazil-yellow) 55%, transparent 55%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.85;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(6, 21, 48, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(201, 164, 76, 0.12);
    border: 1px solid rgba(201, 164, 76, 0.4);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 30px;
}
.hero-badge i { color: var(--gold); }

.hero-seal {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(248, 244, 236, 0.85);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-quick-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 164, 76, 0.2);
}
.hero-quick-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(248, 244, 236, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}
.hero-quick-contact a:hover { color: var(--gold-light); }
.hero-quick-contact i { color: var(--gold); }

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}
.hero-scroll a {
    color: var(--gold);
    font-size: 1.4rem;
    display: block;
    padding: 12px;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(201, 164, 76, 0.15);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.trust-item i {
    font-size: 2rem;
    color: var(--gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.08) 0%, rgba(201, 164, 76, 0.02) 100%);
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 76, 0.2);
    flex-shrink: 0;
}
.trust-item strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.trust-item span {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 110px 0;
    background: var(--cream);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(201, 164, 76, 0.15);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--cream);
    border-color: var(--gold);
}
.service-card.featured h3 { color: var(--cream); }
.service-card.featured h3 em { color: var(--gold-light); }
.service-card.featured p { color: rgba(248, 244, 236, 0.85); }
.service-card.featured .service-icon {
    background: rgba(201, 164, 76, 0.15);
    color: var(--gold-light);
    border-color: var(--gold);
}
.service-card.featured::before { transform: scaleX(1); }

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 2px;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.1) 0%, rgba(201, 164, 76, 0.02) 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 22px;
    border: 1px solid rgba(201, 164, 76, 0.25);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.1);
    background: var(--gold);
    color: var(--navy);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card.cta-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border-color: var(--gold-dark);
}
.service-card.cta-card h3 { color: var(--navy-dark); }
.service-card.cta-card p { color: rgba(10, 31, 68, 0.8); margin-bottom: 20px; }
.service-card.cta-card .service-icon {
    background: rgba(10, 31, 68, 0.1);
    color: var(--navy);
    border-color: var(--navy);
}
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.9rem;
    padding-top: 8px;
    border-top: 1px solid rgba(10, 31, 68, 0.2);
}
.btn-service:hover { gap: 14px; }

/* ===== ABOUT ===== */
.about {
    padding: 110px 0;
    background: var(--white);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}
.about-image {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}
.about-image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
    animation: floatY 5s ease-in-out infinite;
}
.about-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 20px 0 20px;
    line-height: 1.75;
}
.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}
.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
}
.feat i { color: var(--gold); font-size: 1.1rem; }

.about-people {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 164, 76, 0.2);
}
.person {
    display: flex;
    align-items: center;
    gap: 14px;
}
.person i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.person strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.person span, .person a {
    color: var(--gray);
    font-size: 0.88rem;
}
.person a:hover { color: var(--gold-dark); }

/* ===== REQUEST FORM ===== */
.request-section {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(6, 21, 48, 0.97) 0%, rgba(10, 31, 68, 0.95) 100%),
        url('../images/boston-hero.jpg') center center / cover fixed;
    color: var(--cream);
    position: relative;
}
.request-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.request-info h2 { margin-bottom: 20px; }
.request-info > p {
    color: rgba(248, 244, 236, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.info-item i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 76, 0.12);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.1rem;
    border: 1px solid rgba(201, 164, 76, 0.3);
    flex-shrink: 0;
}
.info-item strong {
    display: block;
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.info-item a, .info-item span {
    color: var(--gold-light);
    font-size: 1.02rem;
    font-family: var(--serif);
    font-weight: 500;
}
.info-item a:hover { color: var(--gold); }

.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.badge-i {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 164, 76, 0.08);
    border: 1px solid rgba(201, 164, 76, 0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--cream);
}
.badge-i i { color: var(--gold); }

/* Form */
.request-form-wrap {
    background: var(--white);
    padding: 45px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.request-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.form-title {
    color: var(--navy);
    font-size: 1.6rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 164, 76, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-title i { color: var(--gold); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    border: 1px solid rgba(10, 31, 68, 0.1);
    border-radius: 3px;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a44c'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.check-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.check-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--gold);
}
.check-group label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
}

.hidden { display: none; }

.form-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--gray);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-note i { color: var(--gold-dark); }

/* ===== FAQ ===== */
.faq {
    padding: 110px 0;
    background: var(--cream);
}
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(201, 164, 76, 0.15);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item p {
    padding: 0 28px 24px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--cream);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brazil-green) 0%, var(--gold) 50%, var(--brazil-yellow) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-brand img { width: 60px; height: 60px; }
.footer-brand strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2px;
}
.footer-brand span {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col p {
    color: rgba(248, 244, 236, 0.75);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.footer-col ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(248, 244, 236, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col ul li i { color: var(--gold); width: 16px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(201, 164, 76, 0.15);
    text-align: center;
}
.footer-bottom p {
    color: rgba(248, 244, 236, 0.7);
    font-size: 0.85rem;
    margin: 2px 0;
}
.footer-mini { font-size: 0.78rem !important; color: rgba(248, 244, 236, 0.5) !important; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .request-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 30px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        border-top: 1px solid rgba(201, 164, 76, 0.15);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 14px 20px;
        width: 100%;
    }
    .btn-nav-cta { margin: 12px 0 0; text-align: center; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-seal { width: 150px; height: 150px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .hero-quick-contact { flex-direction: column; gap: 14px; }

    .services, .about, .request-section, .faq { padding: 70px 0; }
    .section-header { margin-bottom: 45px; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .request-form-wrap { padding: 30px 22px; }

    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-col { text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul li { justify-content: center; }

    .whatsapp-float { width: 54px; height: 54px; font-size: 1.6rem; right: 16px; bottom: 16px; }

    .hero::after { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .btn { padding: 14px 24px; font-size: 0.85rem; }
    .hero-badge { font-size: 0.7rem; padding: 8px 16px; }
    .service-card { padding: 30px 24px; }
    .nav-logo span { font-size: 1.1rem; }
    .nav-logo img { width: 36px; height: 36px; }
}
