/* 
   THEME: BOUTIQUE PREMIUM
   Palette: Deep Navy, Champagne Gold, Off-White, WhatsApp Green
*/

:root {
    /* Colors */
    --navy-dark: #0A1128;
    --navy-light: #162447;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --white-soft: #FAF9F6;
    --gray-text: #4A4A4A;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    /* Spacing & Layout */
    --section-pad: 120px;
    --container-width: 1240px;
    --radius-lg: 20px;
    --radius-md: 12px;

    /* Effects */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 20px 60px rgba(10, 17, 40, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white-soft);
    color: var(--navy-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Base Logo Style */
.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-pad) 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- COMPONENTS --- */

/* WhatsApp Buttons */
.btn-whatsapp-nav,
.btn-whatsapp-hero,
.btn-whatsapp-small {
    background-color: var(--whatsapp-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.btn-whatsapp-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-whatsapp-nav i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-whatsapp-hero {
    padding: 18px 36px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-whatsapp-hero i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-whatsapp-small {
    padding: 12px 24px;
    font-size: 0.9rem;
    padding: 12px 24px;
    font-size: 0.9rem;
    background-color: var(--whatsapp-green);
    color: #fff;
    border: 1px solid var(--whatsapp-green);
}

.btn-whatsapp-small:hover {
    background-color: var(--whatsapp-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-small:hover {
    background-color: var(--whatsapp-green);
    color: #fff;
}

.btn-whatsapp-nav:hover,
.btn-whatsapp-hero:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* --- NAVIGATION --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    /* Fixed White Background */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

#navbar.scrolled {
    padding: 10px 0;
}

#navbar.scrolled .brand,
#navbar.scrolled .nav-menu a {
    color: var(--navy-dark);
}

#navbar.scrolled .bar {
    background-color: var(--navy-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--navy-dark);
    /* Revert to Dark */
}

.dot {
    color: var(--gold);
}

.brand-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy-light);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    /* Reduced from 1.05rem */
    font-weight: 600;
    font-weight: 600;
    color: var(--navy-dark);
    /* Revert to Dark */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--navy-dark);
    /* Revert to Dark */
}

/* Menu Close Button - Hidden by default */
.menu-close {
    display: none !important;
}

/* --- HERO SECTION --- */
#hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--navy-dark);
    /* Changed to Navy */
    color: #fff;
    /* Text White */
}

/* Orbes de fundo com efeito de respiração - tons azuis elegantes */
#hero::before,
#hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

#hero::before {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(70, 130, 180, 0.3) 0%, rgba(70, 130, 180, 0.1) 40%, transparent 70%);
    top: -350px;
    left: -250px;
    animation: breathe 8s ease-in-out infinite;
}

#hero::after {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.25) 0%, rgba(100, 149, 237, 0.1) 40%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation: breathe 10s ease-in-out infinite reverse;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.12;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.22;
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-visual {
    animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.highlight-gold {
    color: var(--gold);
    font-style: italic;
    display: inline-block;
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

.subheadline {
    font-size: 1.2rem;
    color: #fff;
    /* Lighter text */
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image-frame-main {
    width: 90%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 100px 30px 100px 0;
    /* Slightly rounded top-right */
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-color: #ddd;
    /* Placeholder color */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-frame-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-frame-main:hover .hero-img-real {
    transform: scale(1.05);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    object-fit: cover;
}

.decorative-circle {
    display: none;
    /* Removed bubble */
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.gold-icon {
    color: var(--gold);
}

/* --- ABOUT SECTION (NO PHOTO REDESIGN) --- */
.about-nophoto {
    background: #fff;
    padding: 80px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
    margin-top: -100px;
    max-width: 1100px;
    /* Increased from 900px */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* Centralize all content */
}

@media (max-width: 768px) {
    .about-nophoto {
        margin-top: -30px;
        padding: 50px 30px;
    }
}

@media (max-width: 600px) {
    .about-nophoto {
        margin-top: 20px;
        padding: 40px 20px;
    }
}

.decorative-icon-top {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.8;
}

.author-name-center {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.author-name-center::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
}

.text-content-centered {
    font-size: 1.35rem;
    /* Increased for better readability for older clients */
    color: var(--gray-text);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    /* Ensure text is centered */
}

.text-content-centered p {
    margin-bottom: 20px;
}

.signature-center {
    margin-top: 40px;
    text-align: center;
}

.signature-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-dark);
    display: block;
    margin-bottom: 8px;
}

.oab {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Removed font-size: inherit to allow .section-title to take effect */

.signature-text {
    font-family: 'Great Vibes', cursive;
    /* Optional: Import cursive font if wanted, using serif fallback */
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    display: block;
    color: var(--gold);
}

.oab {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-light);
}

/* --- BENTO GRID (Atuacao) --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.bento-item {
    background-color: var(--white-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.main-item,
.secondary-item {
    background-color: var(--navy-dark);
    color: #fff;
    height: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    /* Unified gold bg */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.main-item .icon-wrapper {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.bento-item p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
}

.btn-text {
    margin-top: auto;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}

.cta-item {
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-inner h3 {
    margin-bottom: 15px;
    color: var(--navy-dark);
}

/* --- TIMELINE (Diferenciais) --- */
.timeline-process {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch to equal height */
    margin-top: 60px;
    position: relative;
    gap: 15px;
    /* Added small space as requested */
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--white-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.step-content h4 {
    color: var(--navy-dark);
    margin-top: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    /* Bold titles */
}

.step-content p {
    color: var(--navy-dark);
    /* Changed to dark for contrast on white bg */
    font-weight: 500;
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.7;
}

.center h3 {
    font-size: 2rem;
    /* Increased CTA title */
}

.center p {
    font-size: 1.2rem;
    /* Increased CTA subtitle */
    opacity: 0.9;
}

.step-marker {
    width: 60px;
    height: 60px;
    background-color: var(--white-soft);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    position: relative;
    z-index: 2;
}

.process-line {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    margin-top: 30px;
    /* Align with center of marker */
}

/* --- DEPOIMENTOS GLASS --- */
.bg-dark {
    background-color: var(--navy-dark);
}

.text-white {
    color: #fff;
}

.testimonials-slider {
    width: 100%;
    padding: 40px 0 20px;
    /* Space for pagination */
}

.review-card {
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details strong {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 2px;
}

.google-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-date {
    font-size: 0.8rem;
    color: #777;
}

.stars {
    color: #F4B400;
    margin: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-icon {
    color: #4285f4;
    font-size: 1rem;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

.testimonials-scroll {
    display: none;
    /* Hide old container */
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.glass-card {
    min-width: 350px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--navy-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-soft);
}

.glass-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card);
    border-color: var(--gold-light);
}

.glass-card:hover {
    transform: scale(1.02);
}

.quote-icon {
    font-size: 3rem;
    font-family: var(--font-display);
    opacity: 0.5;
    line-height: 0.5;
    margin-bottom: 20px;
}

.t-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
    min-height: 80px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    border-radius: 50%;
    color: var(--navy-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FAQ ACCORDION --- */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.6rem;
    /* Increased */
    color: var(--navy-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-body {
    max-height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body p {
    padding: 15px 0 25px;
    margin: 0;
    color: var(--gray-text);
    font-size: 1.1rem;
}

.accordion-item.active .accordion-body {
    max-height: 1000px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accordion-item.active i {
    transform: rotate(45deg);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .accordion-item.active .accordion-body {
        max-height: 1000px;
    }
}

@media (max-width: 600px) {
    .accordion-item.active .accordion-body {
        max-height: 1200px;
    }
}

@media (max-width: 400px) {
    .accordion-item.active .accordion-body {
        max-height: 1500px;
    }
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--navy-dark);
    color: #fff;
    padding: 100px 0 30px;
    position: relative;
    border-top: 5px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: var(--font-display);
}

.footer-brand img {
    height: 100px;
    /* Increased from 80px */
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 1.1rem;
    /* Increased from 0.9rem */
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}

.footer-contact h4 {
    color: var(--white-soft);
    font-size: 1.3rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1.05rem;
    transition: 0.3s;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.contact-link i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-link:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateX(5px);
}

.main-footer a {
    color: #fff !important;
    /* Forces solid white */
    opacity: 1 !important;
    /* Removes transparency */
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.main-footer a:hover {
    color: var(--gold) !important;
    transform: translateX(5px);
}

.footer-copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0.5;
    font-size: 0.9rem;
    font-weight: 300;
}

/* --- FLOATING WA --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.8);
}

.floating-whatsapp i {
    font-size: 2.6rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3.4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .image-frame-main {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 20px;
    }

    .floating-card {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        animation: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .main-item {
        grid-row: auto;
        min-height: 300px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Mobile Menu Logic Styles */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(10, 17, 40, 0.98) 100%);
        padding-top: 100px;
        padding: 100px 30px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
        animation: slideInLeft 0.3s ease;
        text-align: center;
        align-items: center;
    }

    .nav-menu.active li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 20px 0;
        width: 100%;
    }

    .nav-menu.active .menu-close {
        display: flex !important;
        border-bottom: none;
        padding: 0;
        margin-bottom: 20px;
        position: fixed;
        top: 20px;
        right: 20px;
        width: auto;
        z-index: 1001;
    }

    .close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 10px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-btn:hover {
        color: var(--gold);
        transform: rotate(90deg);
    }

    .nav-menu.active a {
        color: white;
        font-size: 1.2rem;
        letter-spacing: 2px;
        display: block;
    }

    .nav-menu.active a::after {
        background-color: var(--gold);
        bottom: 0;
    }

    .nav-menu.active a:hover::after {
        width: 100%;
    }

    .timeline-process {
        flex-direction: column;
        gap: 0;
    }

    .process-line {
        width: 2px;
        height: 30px;
        margin: 0 auto;
        flex: none;
    }
}

@media (max-width: 768px) {

    /* Tablet adjustments */
    #hero {
        padding-top: 130px;
    }

    .headline {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }

    .section-title {
        font-size: 3.2rem !important;
    }

    .subheadline {
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .btn-whatsapp-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .btn-whatsapp-nav i {
        font-size: 1rem;
    }

    .btn-whatsapp-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-process {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-slider {
        padding: 20px;
    }

    .glass-card {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {

    /* Mobile adjustments */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .headline {
        font-size: 2.2rem;
        line-height: 1.2;
        text-align: center;
    }

    .section-title {
        font-size: 2.8rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .text-content-centered {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-padding {
        padding: 40px 0;
    }

    #hero {
        min-height: 100vh;
        padding-top: 150px;
    }

    .hero-grid {
        gap: 30px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .subheadline {
        text-align: center;
        max-width: 100%;
    }


    .btn-whatsapp-hero {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-nav {
        display: none;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .image-frame-main {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3 / 4;
        margin: 0 auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2,
    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .text-content-centered {
        font-size: 1.15rem;
        line-height: 1.8;
        max-width: 100%;
    }

    .text-content-centered p {
        font-size: 1.15rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-item h3 {
        font-size: 1.4rem;
    }

    .bento-item p {
        font-size: 0.95rem;
    }

    .service-list {
        font-size: 0.9rem;
    }

    .timeline-process {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step {
        padding: 20px 15px;
        text-align: center;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 15px;
    }

    .step-content h4 {
        font-size: 1.3rem;
        margin-top: 10px;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .process-line {
        height: 20px;
    }

    .testimonials-slider {
        padding: 15px;
    }

    .glass-card {
        padding: 15px;
        font-size: 0.9rem;
    }

    .accordion-item {
        margin-bottom: 10px;
    }

    .accordion-header {
        padding: 15px;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Location section adjustments */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    iframe {
        height: 300px !important;
    }

    .floating-whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid>div {
        text-align: center;
    }

    .main-footer {
        padding: 30px 0;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-img {
        height: 60px !important;
        /* Force smaller size on mobile */
    }

    .brand {
        margin-left: 30px;
    }

    /* Menu toggle styling for mobile */
    .menu-toggle {
        width: 30px;
        height: 24px;
        margin-right: 15px;
    }

    .bar {
        width: 100%;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
        transition: 0.3s;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transition: 0.3s;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(-10px, -10px);
        transition: 0.3s;
    }

    .nav-menu.active {
        padding-top: 80px;
        padding: 80px 20px 30px;
        text-align: center;
        align-items: center;
    }

    .nav-menu.active li {
        padding: 18px 0;
        width: 100%;
    }

    .nav-menu.active .menu-close {
        display: flex !important;
        border-bottom: none;
        padding: 0;
        margin: 0;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }

    .nav-menu.active a {
        font-size: 1.3rem;
    }

    .accordion-header {
        font-size: 1.2rem;
        padding: 15px 0;
    }
}

@media (max-width: 400px) {

    /* Extra small devices */
    .headline {
        font-size: 1.8rem;
        text-align: center;
    }

    .subheadline {
        text-align: center;
        max-width: 100%;
    }

    .section-title {
        font-size: 2.4rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 16px;
    }

    .btn-whatsapp-hero {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .bento-item h3 {
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .accordion-header {
        padding: 12px;
        font-size: 0.9rem;
    }

    .nav-menu.active a {
        font-size: 1.1rem;
    }
}

/* Localização Section Responsiveness */
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.localizacao-endereco {
    text-align: left !important;
}

.localizacao-mapa {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .localizacao-endereco {
        text-align: left !important;
    }

    .localizacao-endereco>div {
        padding: 20px;
    }

    .localizacao-mapa iframe {
        height: 300px !important;
    }
}

@media (max-width: 600px) {
    .localizacao-grid {
        gap: 20px;
    }

    .localizacao-endereco>div {
        padding: 15px;
    }

    .localizacao-endereco h3 {
        font-size: 1.2rem;
    }

    .localizacao-endereco p {
        font-size: 1rem;
    }

    .localizacao-mapa iframe {
        height: 250px !important;
    }
}