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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #1a3a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #c6c6c6;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0.5rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f6848;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 200px;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    text-decoration: none;
    color: #0d4a0a;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #0f6848;
    background: rgba(15, 104, 72, 0.05);
}

.nav-links a.active {
    color: #000;
    background: #a9a9a9;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/* Botao Acessar sistema*/
.access-button {
    background: linear-gradient(135deg, #0b3608 0%, #244e1e 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.access-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0b3608 0%, #244e1e 100%);
}

.access-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.access-button i {
    font-size: 18px;
}

.txt-white {
    color: #fff !important;
}

.txt-justify {
    text-align: justify;
}

.topo{
    padding-top: 45px;
}

.img-icones {
    width: 32px;
    height: 32px
}

/* Efeito de pulse opcional */
@keyframes pulse {
    0% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.4);
    }
    100% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.access-button:focus {
  outline: none;
  animation: pulse 1.5s infinite;
}

.txt-ca{
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    margin-top: 50px;
    position: relative;
    background-image: url('../../assets/img/banner.jpg');
    background-color: #97de84; /* Cor base se imagem não carregar */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #E1C03C;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero2{
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 104, 72, 0.3) 100%);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: #0f6848;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

    scroll-margin-top: 20px; /* <- ajuste esse valor conforme a altura do seu menu */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0f6848;
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0f6848, #1a8a5f);
    border-radius: 2px;
}

/* Empresa Section */
.empresa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.empresa-text h3 {
    color: #0f6848;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.empresa-text p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.empresa-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 104, 72, 0.2);
    height: 400px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-image i {
    font-size: 150px;
    color: #0f6848;
    opacity: 0.3;
}

/* Planos Section */
#planos {
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
}

.planos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(15, 104, 72, 0.2);
    border-color: #0f6848;
}

.plano-card.destaque {
    border: 3px solid #0f6848;
    transform: scale(1.05);
}

.plano-card.destaque:hover {
    transform: scale(1.08) translateY(-12px);
}

.plano-header {
    background: linear-gradient(135deg, #0f6848 0%, #1a8a5f 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.plano-card.destaque .plano-header {
    background: linear-gradient(135deg, #0a5a38 0%, #0f6848 100%);
}

.plano-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-nome {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plano-descricao {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

.plano-preco {
    background: #f8fdf9;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e8f5e9;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    color: #0f6848;
    font-weight: 800;
}

.preco-cifrao {
    font-size: 1.8rem;
}

.preco-numero {
    font-size: 3.5rem;
    line-height: 1;
}

.preco-periodo {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 600;
}

.preco-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.plano-recursos {
    padding: 2.5rem 2rem;
}

.recursos-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recursos-lista li {
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2d3748;
    font-size: 0.95rem;
}

.recursos-lista li:last-child {
    border-bottom: none;
}

.recursos-lista i {
    color: #0f6848;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.recursos-lista li.destaque-recurso {
    color: #0f6848;
    font-weight: 600;
}

.plano-cta {
    padding: 2rem;
}

.plano-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #0f6848 0%, #1a8a5f 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 104, 72, 0.4);
}

.plano-card.destaque .plano-button {
    background: linear-gradient(135deg, #0a5a38 0%, #0f6848 100%);
    box-shadow: 0 4px 15px rgba(15, 104, 72, 0.3);
}
#recursos {
    background: #f8fdf9;
}

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

.recurso-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.recurso-card:hover {
    transform: translateY(-10px);
    border-color: #0f6848;
    box-shadow: 0 15px 40px rgba(15, 104, 72, 0.15);
}

.recurso-card i {
    font-size: 3.5rem;
    color: #0f6848;
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: #1a3a2e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recurso-card p {
    color: #5a6c7d;
    font-size: 1rem;
}

/* Números Section */

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    padding-top: 30px;
}

.numero-item {
    background: #E1C03C;
    padding: 3rem 2rem;
    border-radius: 20px;
    color: rgb(0, 0, 0);
    box-shadow: 0 10px 30px rgba(15, 104, 72, 0.3);
}

.numero-valor {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.numero-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Clientes Section */
#clientes {
    background: #f8fdf9;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cliente-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cliente-logo:hover {
    transform: scale(1.05);
    border-color: #0f6848;
    box-shadow: 0 10px 30px rgba(15, 104, 72, 0.15);
}

.cliente-logo i {
    font-size: 60px;
    color: #0f6848;
    opacity: 0.7;
}

/* Contato Section */
.contato-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 104, 72, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a3a2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f6848;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0f6848 0%, #1a8a5f 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 104, 72, 0.3);
}

/* Footer */
footer {
    background: #0a3d2a;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h3 {
    color: #7ed957;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #7ed957;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(126, 217, 87, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #7ed957;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .empresa-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .access-button {
        padding: 8px 10px;
        font-size: 10px;
        font-weight: 600;
    }

    .logo{
        width: 130px;
    }
}