/* 
   Visual Identity: "Thaís Inácia" Clone 
   Colors extracted from source: 
   Gold: #EEA302 (rgb 238,163,2)
   Black: #000000
   Bg Light: #FAFAFA
   Gray Text: #6B6B6B
   Font: Jost (Futura), Poppins, Barlow 
*/

:root {
    --color-gold: #EEA302;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-gray-dark: #333333;
    --color-gray-light: #6B6B6B;

    --font-primary: 'Jost', sans-serif;
    /* For Headings - Matches Futura */
    --font-secondary: 'Poppins', sans-serif;
    /* For Body */
    --font-tertiary: 'Barlow', sans-serif;
    /* For Technical/Numbers */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-bg);
    color: var(--color-black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-primary);
    font-weight: 500;
    /* Wix often uses lighter weights for Futura */
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 980px;
    /* Wix standard width is often 980px or 1200px */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-gold:hover {
    background-color: #d49000;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    display: block;
    margin-top: 15px;
}

/* --- Header --- */
.site-header {
    background-color: var(--color-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on actual logo ratio */
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.header-contact {
    display: none;
    /* Often hidden on mobile, shown on desktop */
}

@media (min-width: 768px) {
    .header-contact {
        display: block;
    }
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 12px;
}

/* --- Hero --- */
.hero-section {
    background-color: var(--color-bg);
    padding: 20px 0;
    /* Slightly more internal */
    overflow: hidden;
    margin-bottom: 50px;
    /* Spacing BETWEEN sections */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pre-headline {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 5px;
    /* Minimal margin */
    font-weight: 600;
}

.headline {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    /* Minimal margin */
    font-weight: 400;
    /* Thin Futura style */
}

.highlight {
    font-weight: 700;
    /* Bold part */
}

.hero-image-mobile {
    display: none;
}

.hero-image-desktop img {
    border-radius: 0;
    /* Wix often strict rectangles */
}

/* --- Calculators List --- */
.section-calculators {
    padding: 0;
    border-radius: 8px;
    /* Optional slight roundness */
    background-color: transparent;
    /* Remove bg to let gap show or keep it if blocky */
    margin-bottom: 50px;
    /* Spacing BETWEEN sections */
}

.calculator-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Extremely tight gap */
    max-width: 800px;
    margin: 0 auto;
}

.calc-box {
    background-color: #FFFFFF;
    text-align: center;
    padding: 8px 15px 8px 50px;
    /* Increased left padding */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 95px;
    /* Ensures uniform height */
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.calc-box::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Make the whole box feel clickable */
.calc-box:hover {
    background-color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: translateX(10px);
}

.calc-question {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-gray-light);
    margin-bottom: 2px;
    font-weight: 400;
}

/* The Link acts as the Title/Label */
.calc-link {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-black);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}

/* Interactive Label Indication */
.calc-link::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.2s;
    color: inherit;
}

.calc-box:hover .calc-link::after {
    opacity: 1;
}

/* Brand Colors applied to Left Border */
/* Item 1: Demissão (Blue) -> Vivid Blue */
.calc-brand-1::before {
    background-color: #007bff;
}

.calc-brand-1 .calc-link {
    color: #007bff;
}

/* Item 2: Férias (Teal) -> Vivid Teal */
.calc-brand-2::before {
    background-color: #00d2b4;
}

.calc-brand-2 .calc-link {
    color: #00d2b4;
}

/* Item 3: PJ x CLT (Purple) -> Vivid Purple */
.calc-brand-3::before {
    background-color: #aa00ff;
}

.calc-brand-3 .calc-link {
    color: #aa00ff;
}

/* Item 4: Rescisão Indireta (Orange) -> Vivid Orange */
.calc-brand-4::before {
    background-color: #ff6d00;
}

.calc-brand-4 .calc-link {
    color: #ff6d00;
}

/* Item 5: Acidente (Red) -> Vivid Red */
.calc-brand-5::before {
    background-color: #ff0000;
}

.calc-brand-5 .calc-link {
    color: #ff0000;
}

/* Item 6: Justa Causa (Gray/Dark) -> Strong Dark Gray (keeping readable but bold) */
.calc-brand-6::before {
    background-color: #212121;
}

.calc-brand-6 .calc-link {
    color: #212121;
}

/* Item 7: Salário (Gold) -> Vivid Gold */
.calc-brand-7::before {
    background-color: #ffab00;
}

.calc-brand-7 .calc-link {
    color: #ffab00;
}

/* Item 8: Processo (Navy) -> Vivid Navy/Blue-Violet */
.calc-brand-8::before {
    background-color: #2962ff;
}

.calc-brand-8 .calc-link {
    color: #2962ff;
}

/* Item 9: Denuncie (Black) -> Pure Black */
.calc-brand-9::before {
    background-color: #000000;
}

.calc-brand-9 .calc-link {
    color: #000000;
}

/* Item 10: Vendedores (Brown) -> Vivid Brown/Terra Cotta */
.calc-brand-10::before {
    background-color: #795548;
}

.calc-brand-babcario::before {
    background-color: #00C853;
}

.calc-brand-10 .calc-link {
    color: #795548;
}



@media (min-width: 900px) {
    .calc-title::after {
        background-color: currentColor;
        /* Use text color or specific brand color if applied to text */
        opacity: 0.3;
    }
}

/* --- About Section --- */
.section-about {
    padding: 20px 0;
    /* Reduced */
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Reduced from 60px */
    align-items: start;
}

.highlight-gold {
    color: var(--color-gold);
}

.title-bar {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 10px 0 20px;
    /* Reduced from 20px 0 40px */
}

.about-item {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    /* Reduced */
}

.bullet-point {
    width: 15px;
    height: 15px;
    background-color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 5px;
    /* Align with text */
}

.about-content p {
    font-size: 15px;
    color: var(--color-gray-dark);
}

.about-image-wrapper img {
    box-shadow: 20px 20px 0px var(--color-gold);
    /* Classic Wix design element */
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px 0 10px;
    /* Reduced from 60px 0 40px */
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-block h4 {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.footer-link-large {
    font-family: var(--font-tertiary);
    /* Technical font for numbers */
    font-size: 24px;
    color: var(--color-white);
    font-weight: 300;
}

.footer-link {
    font-size: 16px;
    color: var(--color-white);
}

.footer-address h5 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.company-info {
    margin-top: 30px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .pre-headline {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .headline {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .hero-image-mobile img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 8px;
    }

    .calc-title::after,
    .title-bar {
        margin-left: auto;
        margin-right: auto;
    }

    .about-item {
        flex-direction: column;
        align-items: center;
    }

    .bullet-point {
        width: 40px;
        height: 2px;
        /* Line instead of square on mobile maybe? */
    }
}

/* ... (existing styles) ... */

/* --- Google Reviews Section --- */
.section-reviews {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.section-header-cnt h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.title-bar-center {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 0 auto 20px;
    /* Reduced from 40px */
}

.margin-bottom-40 {
    margin-bottom: 20px;
    /* Reduced from 40px */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    /* Apple/Google Star Color */
    font-size: 18px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    /* Or random colors like Google */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details strong {
    font-size: 14px;
    color: var(--color-black);
}

.reviewer-details span {
    font-size: 12px;
    color: #777;
}

.google-rating-summary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.stars-summary {
    color: #FFD700;
    font-size: 24px;
}

.total-reviews {
    font-size: 14px;
    color: #666;
}

/* --- Google Reviews Carousel Styles --- */
.section-reviews {
    padding: 20px 0;
    /* Reduced */
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    /* Spacer */
}

.google-badge-header {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    /* Reduced */
}

.header-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-rating .score {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.header-rating .stars {
    color: #fbbc04;
    /* Google Star Color */
    font-size: 20px;
}

.count {
    font-size: 13px;
    color: #777;
}

/* Slider Container */
.reviews-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows */
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 5px 20px;
    /* Padding for shadow */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Review Card (Google Style) */
.google-review-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.review-header-g {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.g-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
}

.g-meta {
    display: flex;
    flex-direction: column;
}

.g-name {
    font-size: 14px;
    color: #202124;
    font-weight: 700;
}

.g-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
}

.g-stars {
    color: #fbbc04;
    font-size: 14px;
}

.g-icon-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.g-text {
    font-size: 14px;
    line-height: 1.5;
    color: #3c4043;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 18px;
    color: #555;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: #f1f1f1;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* --- Desktop Header & Menu --- */
.desktop-header {
    display: none;
    /* Hidden on Mobile/Tablet by default */
    background-color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    /* Use grid-like spacing or space-between */
    justify-content: space-between;
}

.desktop-logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-right: 40px;
    /* Space from logo to nav */
}

/* Push nav to the right, but keep hamburger at the very end */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    /* Pushes nav to the right */
    margin-right: 30px;
    /* Space between nav and hamburger */
}

.desktop-nav a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

.desktop-nav a:hover {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
}

.desktop-hamburger {
    border-left: 1px solid #eee;
    padding-left: 20px;
    height: 30px;
    /* height of divider */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Mobile Header & Menu --- */
.mobile-header {
    display: flex;
    /* Visible on Mobile by default */
    background-color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive Visibility Logic */
@media (min-width: 1025px) {
    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    transition: 0.3s;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 250px;
    /* Drawer width */
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-logo-text-overlay {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.mobile-nav a:hover {
    color: var(--color-gold);
}

.mobile-cta-btn {
    background-color: #25D366;
    /* WhatsApp Green */
    color: white !important;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border: none;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.btn-green {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-green:hover {
    background-color: #1ebe57;
}

.site-footer {
    background-color: white !important;
    color: #333 !important;
}

.footer-link,
.footer-link-large,
.company-info,
.footer-address p {
    color: #333 !important;
}

.footer-block h4,
.footer-address h5 {
    color: var(--color-gold) !important;
}

/* --- Modern Page Transitions --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}