/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --mobile: 768px;
  --tablet: 1024px;
  --desktop: 1200px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2a3f47;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Hero Section */
.hero {
    background: #ff5159;
    color: #fff;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2em);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-banner-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

/* ===== BOTÕES MELHORADOS ===== */
.btn-cta, .btn-submit, .btn-popup, .business-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Botão CTA Principal */
.btn-cta {
    background: linear-gradient(135deg, #1a2b3c 0%, #1a2b3c 100%);
    color: #fff;
    padding: 20px 45px;
    font-size: 1.2em;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    z-index: 1;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 81, 89, 0.6);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Botão de Submit do Formulário */
.btn-submit {
    background: linear-gradient(135deg, #ff5159 0%, #e04048 100%);
    color: #fff;
    padding: 20px;
    font-size: 1.2em;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 81, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::after {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 81, 89, 0.5);
}

/* Botão do Popup */
.btn-popup {
    background: linear-gradient(135deg, #ff5159 0%, #e04048 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(255, 81, 89, 0.3);
    font-size: 1em;
}

.btn-popup:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 81, 89, 0.5);
    animation: pulse 1.5s infinite;
}

/* Botão Corporativo */
.business-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #ff5159;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.business-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #e04048;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

/* Animação de Pulsação */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 81, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 81, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 81, 89, 0);
    }
}

/* Efeito de brilho nos botões */
.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 81, 89, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 81, 89, 0.8), 0 0 30px rgba(255, 81, 89, 0.6);
    }
}

/* Efeito Ripple para botões */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Garantir que os botões com ripple tenham position relative */
.btn-cta, .btn-submit, .btn-popup, .business-btn {
    position: relative;
    overflow: hidden;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    font-size: 2em;
    margin-bottom: 5px;
}

.trust-item span {
    font-size: 0.9em;
    font-weight: 500;
}

/* Seção de Benefícios */
.benefits {
    padding: 80px 20px;
    background: #b4b4b4;
}

.benefits h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 60px;
    color: #2a3f47;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.benefit-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2a3f47;
}

.benefit-item p {
    color: #2a3f47;
    line-height: 1.6;
}

/* Seção de Serviços */
.services {
    padding: 80px 20px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 60px;
    color: #2a3f47;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 25px;
}

.service-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    background: #b4b4b4;
}

.service-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.3em;
    color: #2a3f47;
}

.service-item p {
    padding: 0 20px 20px;
    color: #2a3f47;
}

/* Seção Para Empresas */
.business-section {
    padding: 80px 20px;
    background: #fff;
}

.business-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 20px;
    color: #2a3f47;
}

.business-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2em;
    color: #2a3f47;
    line-height: 1.6;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.business-item {
    background: #b4b4b4;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.business-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.business-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #2a3f47;
}

.business-item p {
    color: #2a3f47;
    line-height: 1.6;
}

.business-benefits {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.business-benefits h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2a3f47;
    font-size: 1.8em;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.check-icon {
    background: #ff5159;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-point span:last-child {
    color: #2a3f47;
    font-weight: 500;
}

.business-cta {
    text-align: center;
    background: #ff5159;
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
}

.business-cta h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.business-cta p {
    margin-bottom: 30px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Prova Social */
.social-proof {
    padding: 80px 20px;
    background: #ff5159;
    color: #fff;
}

.social-proof h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 60px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

.client {
    font-weight: 600;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Como Funciona */
.how-it-works {
    padding: 80px 20px;
    background: #b4b4b4;
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 60px;
    color: #2a3f47;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ff5159;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto 30px;
}

.step h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2a3f47;
}

.step p {
    color: #2a3f47;
    line-height: 1.6;
}

/* Formulário de Orçamento */
.quote-form {
    padding: 80px 20px;
    background: #b4b4b4;
    color: #fff;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
}

.quote-form h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    color: #2a3f47;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3);
}

/* FAQ */
.faq {
    padding: 80px 20px;
    background: #b4b4b4;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 60px;
    color: #2a3f47;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background: #ff5159;
    color: #fff;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #c82333;
}

.faq-item p {
    padding: 20px 30px;
    margin: 0;
    color: #2a3f47;
    line-height: 1.6;
}

/* Urgência */
.urgency {
    padding: 60px 20px;
    background: #ff5159;
    color: #fff;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Rodapé */
.footer {
    background: #8e8e8e;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}

/* WhatsApp Flutuante Melhorado */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    background: linear-gradient(135deg, #25d366 0%, #20bd5c 100%);
    color: #fff;
    padding: 18px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: pulse-green 1.5s infinite;
}

.whatsapp-float a:hover::before {
    left: 100%;
}

@keyframes pulse-green {
    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);
    }
}

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

/* Efeito de loading nos botões de submit */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s ease infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #999;
}

.popup-content h3 {
    margin-bottom: 20px;
    color: #2a3f47;
}

.popup-content p {
    margin-bottom: 15px;
    color: #2a3f47;
}

.popup-content input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1em;
}

/* Navbar */
.navbar {
    width: 100%;
    background: #8d8d8d;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito hover animado */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #ff5159;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Botão Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animação do Hamburguer */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Menu Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #8d8d8d;
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.2em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li a:hover {
        background: rgba(255,255,255,0.1);
        border-radius: 5px;
    }
}

/* Seção Sobre Nós Atualizada */
.about {
    padding: 100px 20px;
    background: #b4b4b4;
    color: #2a3f47;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about h2 {
    font-size: clamp(1.8rem, 4vw, 2.5em);
    margin-bottom: 30px;
    text-align: left;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: left;
}

.about-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-placeholder {
    width: 100%;
    height: 600px;
    background: #8e8e8e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Remover sublinhado de todos os links */
a {
    text-decoration: none;
}

/* Manter o estilo específico para links na navbar */
.nav-links li a {
    text-decoration: none;
}

/* Links no footer */
.footer-section a {
    text-decoration: none;
}

/* Links nos botões CTA (já não têm sublinhado, mas para garantir) */
.btn-cta, .btn-submit, .btn-popup {
    text-decoration: none;
}

/* WhatsApp flutuante */
.whatsapp-float a {
    text-decoration: none;
}

/* Se quiser adicionar algum efeito hover alternativo */
a:hover {
    text-decoration: none;
    opacity: 0.9;
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .btn-cta {
        font-size: 1em;
        padding: 18px 30px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trust-icons {
        gap: 20px;
    }
    
    .trust-item span {
        font-size: 0.8em;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials,
    .steps,
    .stats {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .business-benefits {
        padding: 30px 20px;
    }
    
    .business-cta {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        padding: 14px 20px;
        font-size: 0.9em;
    }
    
    .hero-banner-image {
        margin-top: 20px;
    }
    
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about h2 {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about p {
        text-align: center;
    }
    
    .about-image,
    .about-placeholder {
        height: 300px;
    }
    
    .btn-submit {
        padding: 18px;
        font-size: 1em;
        min-height: 54px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .benefits,
    .services,
    .social-proof,
    .how-it-works,
    .quote-form,
    .business-section,
    .faq {
        padding: 60px 15px;
    }
    
    .benefits h2,
    .services h2,
    .social-proof h2,
    .how-it-works h2,
    .quote-form h2,
    .business-section h2,
    .faq h2 {
        font-size: 2em;
    }
    
    .popup-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .nav-container {
        flex-direction: row;
    }
    
    .btn-cta, .business-btn {
        width: 100%;
        max-width: 300px;
    }
}