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

body {
    font-family: var(--font-body);
    background-color: var(--steel-white);
    color: var(--night-black);
    line-height: 1.6;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.icon-whatsapp {
    width: 24px;
    height: 24px;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
}
.btn-whatsapp:hover {
    background-color: #20b858;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-sm .icon-whatsapp {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--scorpion-red);
    color: white;
}
.btn-primary:hover {
    background-color: #a81717;
}

.btn-secondary {
    background-color: transparent;
    color: var(--night-black);
    border: 2px solid var(--night-black);
}
.btn-secondary:hover {
    background-color: var(--night-black);
    color: var(--steel-white);
}

/* Header */
.main-header {
    background-color: var(--night-black);
    color: var(--steel-white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: flex;
    gap: 0.2rem;
    letter-spacing: 2px;
}

.logo-casa {
    color: var(--steel-white);
}

.logo-scorpions {
    color: var(--scorpion-red);
}
/* Navigation */
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: var(--steel-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--scorpion-red);
}

.nav-b2b {
    color: var(--warning-amber) !important;
}

.mobile-nav-logo, .mobile-nav-wa {
    display: none;
}
.nav-b2b:hover {
    color: #ffd166;
}

/* Footer (Basic structure) */
.main-footer {
    background-color: var(--night-black);
    color: var(--steel-white);
    padding: var(--spacing-lg) 0 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    background-color: #050505;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.developer-credit {
    width: 100%;
    margin-top: -0.5rem;
}

/* Hero Section Styles */
.hero {
    background-color: var(--night-black);
    color: var(--steel-white);
    text-align: center;
}

.seasonal-alert {
    background-color: var(--scorpion-red);
    color: white;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 7rem;
    padding-bottom: 8rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.2rem);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--night-black);
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Problem Solver Grid */
.problem-solver {
    background-color: var(--steel-white);
}

.pest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pest-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--night-black);
}

.pest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top-color: var(--scorpion-red);
}

.card-garden {
    border-top-color: var(--nature-green);
}
.card-garden:hover {
    border-top-color: var(--nature-green);
}

.pest-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pest-card p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-text {
    font-weight: 700;
    color: var(--scorpion-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 0.8rem;
}

.card-garden .btn-text {
    color: var(--nature-green);
}

/* Departments Section */
.department-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .department-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dept-card {
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dept-dark {
    background-color: var(--night-black);
    color: var(--steel-white);
}

.dept-green {
    background-color: var(--nature-green);
    color: var(--steel-white);
}

.dept-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dept-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dept-features {
    margin-bottom: 2rem;
}

.dept-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dept-features span {
    color: var(--scorpion-red);
    font-weight: bold;
}

.dept-green .dept-features span {
    color: #ffd166; /* Yellow tint for contrast on green */
}

/* Modifier for light secondary button on dark backgrounds */
.btn-light {
    border-color: var(--steel-white);
    color: var(--steel-white);
}
.btn-light:hover {
    background-color: var(--steel-white);
    color: var(--nature-green);
}

/* B2B Section */
.b2b-section {
    background-color: var(--guard-navy);
    color: var(--steel-white);
    text-align: center;
}

.b2b-content {
    max-width: 900px;
    margin: 0 auto;
}

.b2b-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.b2b-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.b2b-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.b2b-feature {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.b2b-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2b-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 800;
}

.b2b-feature p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.anvisa-warning {
    background-color: rgba(232, 160, 32, 0.1);
    border-left: 4px solid var(--warning-amber);
    padding: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    border-radius: 0 4px 4px 0;
}

.anvisa-warning strong {
    color: var(--warning-amber);
    display: block;
    margin-bottom: 0.5rem;
}

.b2b-actions .btn:hover {
    background-color: #fcd34d !important;
}

/* About Store */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.about-checklist li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.store-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
}

/* Testimonials */
.google-rating {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.client-name {
    font-weight: bold;
    color: var(--scorpion-red);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--scorpion-red);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--steel-white);
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.icon-instagram {
    width: 20px;
    height: 20px;
}

.instagram-link:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--steel-white);
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--night-black);
}

.info-item p {
    color: #555;
}

.map-box {
    background-color: #ddd;
    height: 100%;
    min-height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    border: 2px dashed #bbb;
}

/* Hamburger Base */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--steel-white);
    border-radius: 2px;
}

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    /* Header & Hamburger */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--night-black);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease-in-out;
        z-index: 150;
        padding-top: 6rem;
        padding-bottom: 2rem;
        display: flex;
    }

    .main-nav.active {
        left: 0;
    }
    
    .mobile-nav-logo {
        display: block;
        font-family: var(--font-display);
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .mobile-nav-wa {
        display: inline-flex;
        margin-top: auto;
        align-self: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
    }
    
    .mobile-nav-wa .icon-whatsapp {
        width: 32px;
        height: 32px;
    }

    .main-nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 2.5rem;
    }

    .main-nav a {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2,
    .b2b-content h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
    
    /* Layout & Buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .dept-card, 
    .b2b-feature, 
    .testimonial-card,
    .pest-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}
