/* Variáveis baseadas na paleta original que você gostou */
:root {
    --primary-blue: #00a0db;
    --primary-green: #2bc572;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f7f9;
    --text-color: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

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

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

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

/* Placeholders de Imagem */
.img-placeholder {
    width: 100%;
    background-color: #e0e0e0;
    border: 2px dashed #b0b0b0;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.logo-img {
    width: 200px;
    height: 60px;
}

.extratora-img {
    height: 300px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #24a861;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* Efeito de pulso para o botão final */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 197, 114, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(43, 197, 114, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(43, 197, 114, 0);
    }
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0;
    /* Adicione a URL da sua imagem principal no background-image abaixo */
    background-image: url('imagem-fundo-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 160, 219, 0.85);
    /* Overlay azul transparente */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Benefits */
.benefits {
    padding: 60px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

/* Services */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

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

.service-item img {
    height: 250px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-item:hover img {
    transform: scale(1.03);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
}

/* Extra Service */
.extra-service {
    padding: 80px 0;
}

.extra-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.extra-text,
.extra-image {
    flex: 1;
}

.extra-text h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.extra-text p {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--light-bg);
}

.footer h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.copyright {
    margin-top: 60px;
    font-size: 0.9rem !important;
    color: #777;
}

.extra-text,
.extra-image {
    flex: 1;
    min-width: 0;
    /* ESSA LINHA É A MÁGICA: impede o Swiper de esticar infinitamente o Flexbox */
}

.extratora-img {
    width: 100%;
    height: 400px;
    /* Altere a altura para a que achar melhor */
    object-fit: cover;
}

/* 2. NOVO VISUAL PARA OS SERVIÇOS (Grid com 3 por linha) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
}

.service-card h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    /* Remove a borda arredondada das imagens de placeholder para preencher o card */
    border: none;
}

.service-card .swiper {
    padding-bottom: 30px;
    /* Espaço para as bolinhas de paginação do card */
}

/* Tamanho das setinhas dentro dos cards menores */
.service-card .swiper-button-next::after,
.service-card .swiper-button-prev::after {
    font-size: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .extra-container {
        flex-direction: column;
        text-align: center;
    }
}