/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

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

.whatsapp-btn svg {
    width: 38px;
    height: 38px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Header e Hero Centralizado */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,102,204,0.05)"/></svg>');
    opacity: 0.3;
}

.hero {
    position: relative;
    z-index: 10;
}

.container-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #333;
}

.hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin: 0 auto 30px;
    animation: logo-float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.2));
}

@keyframes logo-float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0066cc;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.btn-whatsapp-main {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-main:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.hero-phone {
    text-align: center;
}

.btn-phone-link {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-phone-link:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Galeria de Fotos - CARROSSEL COM FUNDO AZUL */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    position: relative;
}

.photo-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.photo-gallery .section-title {
    color: white;
}

.photo-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: white;
    padding: 40px 30px;
}

.carousel-caption h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: white;
}

.carousel-caption p {
    font-size: 1.1em;
    opacity: 0.95;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-btn svg {
    fill: #0066cc;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: white;
    width: 14px;
    height: 14px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Seções Gerais */
.section-title {
    font-size: 2.5em;
    color: #0066cc;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Serviços */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
    border-color: #0066cc;
}

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

.service-card h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Benefícios */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
}

.benefits .section-title {
    color: white;
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    font-weight: bold;
    border: 3px solid white;
}

.benefit-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.benefit-item p {
    opacity: 0.9;
}

/* Área de Cobertura */
.coverage {
    padding: 80px 0;
    background: #f8f9fa;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-tag {
    background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,102,204,0.2);
    transition: all 0.3s ease;
}

.location-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0,102,204,0.15);
}

.faq-item h3 {
    color: #0066cc;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    background: #25D366;
    color: white;
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}

.cta-phone {
    margin-top: 25px;
    font-size: 1.1em;
}

.cta-phone a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid white;
}

/* Rodapé */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

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

.logo-footer-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo-footer h3 {
    font-size: 1.3em;
}

.footer-info p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 15px;
    color: #0099ff;
    font-size: 1.2em;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.social-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #20ba5a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsividade */
@media (max-width: 968px) {
    .hero-logo {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5em;
    }
    
    .carousel-caption p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .carousel-container {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-caption {
        padding: 25px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.3em;
    }
    
    .carousel-caption p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 1.5em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .hero-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .btn-whatsapp-main {
        padding: 16px 35px;
        font-size: 1.1em;
        width: 90%;
    }
    
    .btn-phone-link {
        padding: 12px 30px;
        font-size: 1em;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.7em;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn svg {
        width: 32px;
        height: 32px;
    }
    
    .carousel-slide {
        height: 280px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-caption {
        padding: 20px 15px;
    }
    
    .carousel-caption h3 {
        font-size: 1.1em;
    }
    
    .carousel-caption p {
        font-size: 0.85em;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 12px;
        height: 12px;
    }
}
