/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botão WhatsApp */
.whatsapp-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    max-width: 300px; /* Aumentando de 200px para 300px */
    height: auto;
}

.whatsapp-button:hover {
    transform: scale(1.05); /* Efeito de zoom suave ao passar o mouse */
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: white;
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    color: white;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Carrossel */
.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 85vh;
    text-align: center;
}

.hero-text {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-text .cta-button {
    margin-top: 100px;
    display: inline-block;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a5f7a;
}

/* Cards de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 40px;
    color: #1a5f7a;
    margin-bottom: 20px;
}

/* Cards de Serviços */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: #1a5f7a;
    margin-bottom: 20px;
}

/* Seção de Contato */
.contact {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 24px;
    color: #1a5f7a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a5f7a;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Ajustes para tablets e celulares maiores */
    .hero {
        min-height: 60vh; /* Reduz a altura em telas menores */
    }

    .carousel-content {
        background-size: contain; /* Ajusta a imagem para caber na tela */
        background-repeat: no-repeat;
        background-position: center;
    }

    .carousel-button {
        width: 40px; /* Botões menores em telas pequenas */
        height: 40px;
        font-size: 18px;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .whatsapp-button img {
        max-width: 200px; /* Botão WhatsApp menor em telas pequenas */
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 40px;
        right: 40px;
    }

    .whatsapp-float img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para celulares menores */
    .hero {
        min-height: 50vh;
    }

    .carousel-content {
        background-size: contain;
    }

    .carousel-button {
        width: 35px; /* Botões ainda menores */
        height: 35px;
        font-size: 16px;
    }

    .whatsapp-button img {
        max-width: 180px; /* Botão WhatsApp ainda menor */
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .carousel-dots {
        bottom: 10px; /* Ajusta posição dos dots */
    }

    .dot {
        width: 8px; /* Dots menores */
        height: 8px;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .carousel-content {
        background-size: contain;
    }

    .hero-content {
        min-height: 100vh;
    }

    .whatsapp-button img {
        max-width: 150px;
    }
} 