*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
html,
body {
    height: 100%;
    width: 100%;
}
body {
    font-family: "Ubuntu", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    font-style: normal;
    color: #333;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
}
div.hero {
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.hero .caption {
    padding: 100px 0;
}
.hero .caption h1 {
    color: #fff;
    font-weight: bold;
}
.hero .caption p,
.hero .caption h5,
.hero .caption h4
 {
    color: #fff;
}
.logotipo-wrap {
    text-align: center;
}
.logotipo-wrap .logotipo {
    width: 200px;
    height: auto;
}
/* Estilo base do botão */
.btn {
    position: relative;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    color: white;
    border-radius: 0 8px 0 8px;
    z-index: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Borda interna */
.btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 6px 0 6px;
    pointer-events: none;
    z-index: 2;
}

/* Camada de fundo (gradiente normal) */
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to left, #00acc8, #27b3a5); /* gradiente invertido */
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 0 8px 0 8px;
}

/* Gradiente base */
.btn-green {
    background: linear-gradient(to right, #00acc8, #27b3a5);
}
.btn-green:hover,
.btn-green2:hover {
    color: #ffffe2;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}
.btn-green:hover::after {
    background: linear-gradient(to right, #27b3a5, #00acc8);
}

/* Hover: revela gradiente invertido com opacidade */
.btn-green:hover::after,
.btn-green2:hover::after {
    opacity: 1;
}

/* Gradiente base */
.btn-green2 {
    background: linear-gradient(to right, #00c846, #188e41);
}

.btn-green2::after {
    background: linear-gradient(to left, #188e41, #00c846); /* gradiente invertido */
}

.btn-green2:hover::after {
    background: linear-gradient(to left, #00c846, #188e41); /* gradiente invertido */
}

/* Camada de conteúdo acima de tudo */
.btn span {
    position: relative;
    z-index: 1;
}
.body-wrap {
    margin-top: 20px;
    text-align: center;
}
.box {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box .title {
    color: #00acc8;
}

.whats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    animation: shakeX 2s infinite;
}
.whats a {
    text-decoration: none;
    background-color: #00bf49;
    color: #fff;
    padding: 10px 15px;
    border-radius: 40px;
    display: block;
}
.whats a:hover {
    background-color: #13d45d;
}

/* Diferenciais Section */
.diferenciais {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 4rem 1rem;
}

.diferenciais-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diferencial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.diferencial-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.diferencial-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.diferencial-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background: linear-gradient(to right, #00acc8, #27b3a5);
    color: white;
    padding: 4rem 1rem;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item p {
    font-size: 1rem;
    color: #bfdbfe;
}

/* CTA Final Section */
.cta-final {
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-final-container {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-final p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #066675;
    color: #fff;
    padding: 3rem 1rem;
    border-top: 1px solid #066675;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-section h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #fff;
}

/* Icons SVG */
.icon {
    width: 2rem;
    height: 2rem;
    display: inline-block;
}

.diferencial-card {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.diferencial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.diferencial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.diferencial-card:nth-child(3) {
    animation-delay: 0.3s;
}
