body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    background-color: #F4F7F9;
    padding-top: 80px;
}

.navbar .nav-link {
    color: #2A4054;
    font-weight: 500;
}

.btn-primary {
    background-color: #4EB9C9;
    border: none;
}

.btn-primary:hover {
    background-color: #40a5b4;
}

.hero-section {
    background: linear-gradient(to bottom, #E9ECEF 0%, #F4F7F9 100%);
    padding: 100px 0;
}

.section-title {
    font-weight: 700;
    color: #2A4054;
}

.card .icon {
    color: #F66A30;
}



/* Efeito ripple no botão */
.ripple-button {
    position: relative;
    overflow: hidden;
}
.ripple-button::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}
.ripple-button:active::after {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}


/* Seções genéricas */
.section {
    padding: 80px 0;
}

/* Hero */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(to bottom, #2A4054, #4EB9C9);
    position: relative;
    color: white;
    overflow: hidden;
}

/* Camada de partículas */
.particles-bg {
    z-index: 0;
}

/* Textos com sombra para contraste */
.text-shadow {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Botão já definido anteriormente */

.hero-section .text-warning {
    color: #F66A30 !important;
}

.hero-section h1,
.hero-section h2 {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-section strong {
    color: #fff;
    font-weight: 600;
}

.hero-section u {
    text-decoration-color: #F66A30;
    text-underline-offset: 3px;
}

.brand-name {
    color: #F66A30;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-weight: 700;
    color: #2A4054;
}

/* Hover 3D nos cards */
.card-hover {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.card-hover:hover {
    transform: rotateY(4deg) scale(1.02);
}

/* Ícones centralizados */
.icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    stroke: #F66A30; /* ou fill: #4EB9C9, se for ícone preenchido */
}


.hilight-text{
    color: #4EB9C9;
}

.whatsapp-preview {
    background-color: #dcf8c6;
    border-left: 5px solid #25d366;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #212529;
    max-width: 340px;
    margin: auto;
}

.message-box {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(33, 37, 41, 0.05);
}

.cta-section {
    background: linear-gradient(to right, #2A4054, #4EB9C9);
    padding: 80px 0;
}

.footer-section {
    background-color: #2A4054;
}
.footer-links a:hover {
    text-decoration: underline;
}

.alert {
    border: none;
    border-left: 5px solid transparent;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Sucesso */
.alert-success {
    background-color: #eafaf0;
    border-left-color: #4CAF50;
    color: #2e7d32;
}

/* Erro */
.alert-danger {
    background-color: #fdecea;
    border-left-color: #E53935;
    color: #c62828;
}

/* Informação */
.alert-info {
    background-color: #e7f6f9;
    border-left-color: #4EB9C9;
    color: #027991;
}

/* Alerta / Aviso */
.alert-warning {
    background-color: #fff4e5;
    border-left-color: #F66A30;
    color: #b26a12;
}

/* Ícone opcional */
.alert .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
