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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Mobile */
.mobile-header {
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.contact-buttons {
    display: flex;
    gap: 8px;
}

.phone-btn, .whatsapp-btn {
    padding: 6px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s;
}

.phone-btn {
    background: #f0f0f0;
    color: #333;
}

.phone-btn:hover {
    background: #e0e0e0;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b358;
}

/* Menu Mobile */
.mobile-nav {
    background: #fff;
    padding: 10px 15px;
    margin-top: 55px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 999;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

.nav-menu {
    display: none;
    list-style: none;
    margin-top: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover {
    background: #f8f9fa;
    color: #4CAF50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 120px 20px 50px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/cacamba-hero.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.location-search {
    display: flex;
    margin: 30px 0 20px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.location-search input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
}

.location-search input::placeholder {
    color: #999;
}

.search-btn {
    background: #FF9800;
    border: none;
    padding: 16px 20px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #F57C00;
}

.detect-location {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    margin: 15px 0 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.detect-location:hover {
    background: white;
    color: #4CAF50;
}

.service-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.service-btn {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.service-btn.active,
.service-btn:hover {
    background: white;
    color: #4CAF50;
    border-color: white;
    transform: translateY(-2px);
}

.cta-btn {
    display: inline-block;
    background: #FF9800;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.cta-btn:hover {
    background: #F57C00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

/* Seções */
.services, .sizes, .coverage, .contact {
    padding: 60px 20px;
}

.services {
    background: #f8f9fa;
}

.sizes {
    background: white;
}

.coverage {
    background: #f8f9fa;
}

.contact {
    background: white;
}

.services h2, .sizes h2, .coverage h2, .contact h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Cards de Serviço */
.service-cards {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
}

.service-card li {
    color: #4CAF50;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Cards de Tamanho */
.size-cards {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.size-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
}

.size-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.size-card.popular {
    border-color: #FF9800;
    transform: scale(1.02);
}

.size-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9800;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.size-card h3 {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
    font-weight: bold;
}

.size-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.size-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF9800;
    margin: 20px 0;
}

.solicitar-btn {
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
    font-size: 14px;
}

.solicitar-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Cobertura */
.coverage-check {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: center;
}

.coverage-check h3 {
    margin-bottom: 20px;
    color: #333;
}

.check-input {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
}

.check-input input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.check-input button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.check-input button:hover {
    background: #45a049;
}

.cities-section {
    text-align: center;
}

.cities-section h4 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.city {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
}

.city:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Contato */
.contact-grid {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.contact-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 10px;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    color: #45a049;
}

.final-cta-section {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.final-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.final-cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.cta-features span {
    font-weight: 500;
    font-size: 14px;
}

.final-cta {
    background: #FF9800;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.final-cta:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Botão Flutuante WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsividade para tablets */
@media (min-width: 768px) {
    .contact-buttons {
        gap: 12px;
    }
    
    .phone-btn, .whatsapp-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .size-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-types {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 500px;
    }
    
    .cta-features {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
    .mobile-header {
        padding: 15px 30px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .contact-buttons {
        gap: 15px;
    }
    
    .phone-btn, .whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .size-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        padding: 150px 20px 80px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        gap: 30px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu a {
        padding: 10px 0;
        background: transparent;
    }
    
    .mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

