/* 
   Mauch Uniformes - Landing Page Styles
   Focus: Conversion, Responsive, Professional
*/

:root {
    --primary: #F27121; /* Mauch Orange */
    --primary-dark: #D15A10;
    --black: #1A1A1A;
    --dark-gray: #333333;
    --light-gray: #F4F4F4;
    --white: #FFFFFF;
    --text-color: #444444;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 113, 33, 0.4);
}

.btn-secondary {
    background-color: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

/* 1. Navbar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 100px; /* Distância maior entre a lista de links e o botão CTA */
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    white-space: nowrap;
}

.nav-menu ul li a:hover {
    color: var(--primary);
}

.nav-cta {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    transition: transform 0.4s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle.active {
    transform: rotate(180deg);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* 2. Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/fachada.webp');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 100px 0;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    background-color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* 3. Pain Section */
.pain-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.pain-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pain-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 300px;
    max-width: 380px;
}

.pain-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.pain-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 113, 33, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.pain-item:hover .pain-icon-wrapper {
    background-color: var(--primary);
}

.pain-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.pain-item:hover .pain-icon-wrapper i {
    color: var(--white);
}

.pain-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pain-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* 4. Solution Section */
.solution {
    padding: 100px 0;
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.solution-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.solution-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.services-list {
    margin-bottom: 30px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.services-list li i {
    color: var(--primary);
}

/* 5. Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
}

.benefits h2, .benefits h3 {
    color: var(--white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
    flex: 1 1 280px;
    max-width: 350px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

/* 6. Diferenciais */
.diferenciais {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 25px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* 7. Objection Handling */
.objection-handling {
    padding: 80px 0;
}

.objection-card {
    background-color: var(--white);
    border: 2px solid var(--primary);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.objection-card h2 {
    margin-bottom: 20px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* 8. CTA Banner */
.cta-banner {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* 9. FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(242, 113, 33, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--black);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-card.active .faq-answer {
    max-height: 200px;
    padding: 10px 30px 25px;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-card.active {
    border-left: 4px solid var(--primary);
}

/* 10. Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding: 80px 0;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }
    
    .solution-wrapper {
        grid-template-columns: 1fr;
    }
    
    .solution-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .solution-content h2 {
        font-size: 1.8rem;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 0;
        opacity: 1;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        text-align: right;
        align-items: flex-end;
        width: 100%;
    }

    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1rem;
        font-weight: 700;
        color: var(--black);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
    }

    .nav-menu ul li a:hover {
        color: var(--primary);
        padding-right: 10px;
    }

    .nav-menu .nav-cta {
        margin-top: 30px;
        width: 100%;
        max-width: none;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 12px 24px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee {
        font-size: 1.1rem;
        gap: 12px;
    }
}
