* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E3A5F;
    --secondary-color: #EAB308;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header/Navbar */
.header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.whatsapp-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.whatsapp-btn:hover {
    background: #f0b91e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a8f 100%);
    color: var(--white);
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></linearGradient></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #f0b91e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose h2,
.equipamentos h2,
.servicos h2,
.planos h2,
.depoimentos h2,
.sobre h2,
.locais h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Equipamentos Section */
.equipamentos {
    padding: 80px 0;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.equip-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.equip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.equip-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.equip-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.equip-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
}

.specs {
    list-style: none;
    padding: 1rem 1.5rem;
}

.specs li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Serviços Section */
.servicos {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid var(--secondary-color);
}

.servico-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.servico-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Planos Section */
.planos {
    padding: 80px 0;
}

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

.plano-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plano-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.preco {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plano-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Tabela de Precos */
.tabela-precos-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tabela-precos {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.tabela-precos thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a8f 100%);
    color: var(--white);
}

.tabela-precos th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.tabela-precos td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tabela-precos tbody tr:hover {
    background: rgba(234, 179, 8, 0.05);
}

.tabela-precos tbody tr:last-child td {
    border-bottom: none;
}

.equip-name {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.preco-ate {
    color: var(--text-dark);
    font-weight: 500;
}

.preco-apos {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.economia {
    background: rgba(234, 179, 8, 0.2);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

.info-precos {
    background: rgba(30, 58, 95, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.info-precos p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: var(--bg-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--primary-color);
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.sobre-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sobre-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.valores-list {
    list-style: none;
    margin-top: 1rem;
}

.valores-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Locais Section */
.locais {
    padding: 80px 0;
    background: var(--bg-light);
}

.locais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.local-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.local-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(234, 179, 8, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    .why-choose h2,
    .equipamentos h2,
    .servicos h2,
    .planos h2,
    .depoimentos h2,
    .sobre h2,
    .locais h2 {
        font-size: 2rem;
    }

    .plano-card.featured {
        transform: scale(1);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
