/* ========================================
   Locamar - Landing Page: Containers
   ======================================== */

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

:root {
    --primary: #486E35;
    --primary-hover: #3F612E;
    --primary-dark: #35521F;
    --secondary: #FCCD2B;
    --secondary-hover: #E6B925;
    --accent: #FD5F04;
    --accent-hover: #E35504;
    --whatsapp: #57D163;
    --whatsapp-hover: #4AB856;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #E5E5E5;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Exo 2', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.btn-header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
}

.btn-header-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-top: 1px solid var(--light-gray);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--light-gray);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.btn-mobile-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('https://locamarlocacoes.com.br/assets/images/hero-products.jpg') center/cover no-repeat;
    margin-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(53,82,31,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1rem;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero h1 .highlight {
    color: var(--secondary);
}

.hero-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72,110,53,0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253,95,4,0.3);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.0625rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87,209,99,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--primary);
    padding: 2rem 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.trust-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Sections ---- */
.section {
    padding: 4rem 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title .highlight {
    color: var(--primary);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--gray);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* ---- Container Types ---- */
.types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.type-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.type-card.featured {
    border-color: var(--accent);
}

.type-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.375rem 2.5rem;
    transform: rotate(45deg);
    z-index: 2;
}

.type-header {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.type-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.type-card:hover .type-header img {
    transform: scale(1.05);
}

.type-header.storage {
    background: linear-gradient(135deg, #e8f0e4 0%, #d4e4cc 100%);
}

.type-header.office {
    background: linear-gradient(135deg, #fef3d0 0%, #fce9a0 100%);
}

.type-icon {
    color: var(--primary);
}

/* Products Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0e4 0%, #d4e4cc 100%);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gallery-card-body .btn {
    margin-top: auto;
}

.gallery-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.gallery-card-body p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.gallery-card-body .btn {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
}

.type-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.type-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.type-body .btn {
    margin-top: auto;
    width: 100%;
}

.type-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.type-body > p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
}


/* ---- Benefits ---- */
.benefits {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.benefit-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(72,110,53,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ---- Comparison Table ---- */
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.compare-table thead {
    background: var(--primary);
    color: var(--white);
}

.compare-table th {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table td {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--light-gray);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
    background: var(--off-white);
}

.highlight-col {
    background: rgba(72,110,53,0.05) !important;
    font-weight: 600;
    color: var(--primary-dark);
}

.compare-table thead .highlight-col {
    background: var(--primary-dark) !important;
    color: var(--secondary);
}

.highlight-col svg {
    vertical-align: middle;
    margin-right: 0.375rem;
}

/* ---- Steps ---- */
.how-it-works {
    background: var(--off-white);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 340px;
    width: 100%;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--gray);
}

.step-connector {
    color: var(--primary);
    transform: rotate(90deg);
}

/* ---- Use Cases ---- */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.case-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.case-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.case-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.case-card p {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ---- CTA ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    padding: 4rem 0;
}

.cta-inner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ---- FAQ ---- */
.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    padding: 3rem 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8125rem;
}

/* ---- Floating WhatsApp ---- */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(87,209,99,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(87,209,99,0.5);
}

.floating-whatsapp img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ---- Animations ---- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .btn-header-cta {
        display: inline-flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .trust-grid {
        gap: 3rem;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .step-connector {
        transform: none;
        margin-top: 3rem;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }

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

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .hero {
        min-height: 600px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 5rem 0;
    }

    .cta-inner h2 {
        font-size: 2.25rem;
    }
}
