/* Estilos personalizados para a página de vendas - Design profissional */

/* Variáveis de cores */
:root {
    --primary-blue: #0B4F6C;
    --secondary-blue: #01BAEF;
    --accent-blue: #107FA8;
    --primary-green: #01A66F;
    --secondary-green: #04DEAD;
    --accent: #FBAF00;
    --dark: #0D1B2A;
    --light: #F8F9FA;
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --border-light: #E6E6E6;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Tipografia refinada */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

p {
    margin-bottom: 1rem;
}

/* Degradês para botões e backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--secondary-green) 100%);
}

.bg-gradient-accent {
    background: linear-gradient(90deg, var(--accent) 0%, #FFC93C 100%);
}

/* Glassmorphism para elementos modernos */
.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efeitos avançados de hover nos cards */
.hover-lift {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(11, 79, 108, 0.25);
}

/* Animações sofisticadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-zoomIn {
    animation: zoomIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Delays para animações em sequência */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Formulário e elementos de entrada */
.form-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-light);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.form-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.form-body {
    padding: 2.5rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: rgba(249, 250, 251, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 4px rgba(1, 186, 239, 0.1);
    background-color: white;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.form-check-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-footer {
    padding: 1rem 2.5rem 2.5rem;
    text-align: center;
}

.form-icon {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

/* Formulário e elementos de entrada */
.form-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-card-header {
    background-color: var(--primary-blue);
    padding: 1.5rem;
    color: white;
    border-radius: 10px 10px 0 0;
}

.form-card-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.form-card-header p {
    opacity: 0.8;
    margin-bottom: 0;
}

.form-card-body {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background-color: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(1, 186, 239, 0.15);
}

.form-icon {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.form-checkbox {
    border-color: var(--border-light);
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(1, 186, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 186, 239, 0.4);
}

.form-submit-button:active {
    transform: translateY(1px);
}

/* Status do sistema */
.system-status {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.system-status-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    position: relative;
}

.system-status-dot::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    left: -2px;
    top: -2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Botões e CTA */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
}

.btn-gradient {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(1, 186, 239, 0.3);
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--accent) 0%, #FFC93C 100%);
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(251, 175, 0, 0.3);
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(1px);
}

.btn i {
    margin-right: 0.5rem;
}

/* Header e Navegação */
header {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 3.5rem;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 2.8rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    margin: 0 1rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(1, 186, 239, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 186, 239, 0.4);
}

/* Mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Efeito parallax para backgrounds */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Sombras avançadas */
.shadow-soft {
    box-shadow: 0 10px 30px -5px rgba(11, 79, 108, 0.15);
}

.shadow-strong {
    box-shadow: 0 20px 40px -10px rgba(11, 79, 108, 0.3);
}

/* Estatísticas e números */
.number-highlight {
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 2.5rem;
    display: inline-block;
    line-height: 1.2;
}

.stats-card {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* Efeito de divisor estilizado */
.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 2px;
    margin: 1.5rem 0;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Seções e elementos visuais */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* Cards de benefícios */
.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    background-color: var(--primary-blue);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.benefit-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Brilho em destaques */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    20% {
        transform: translateX(100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Seção de Depoimentos */
.testimonials-section {
    background-color: white;
    padding: 5rem 0;
    position: relative;
}

.testimonial-container {
    position: relative;
    z-index: 2;
}

.testimonial {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 149, 235, 0.1);
    line-height: 1;
}

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

.testimonial-content {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-blue);
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Prevenção de overflow horizontal no mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* Responsividade aprimorada para mobile */
@media (max-width: 768px) {
    /* Garantir que nenhum elemento ultrapasse a largura da tela */
    * {
        max-width: 100vw;
    }
    
    /* Ajustar containers para mobile */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
    }
    
    /* Ajustar grid para mobile */
    .grid {
        overflow-x: hidden;
    }
    
    /* Ajustar botões para mobile */
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Ajustar seção hero para mobile */
    .hero-section {
        padding: 3rem 0;
    }
    
    /* Ajustar títulos para mobile */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    /* Ajustar benefícios grid para mobile */
    .grid-cols-2 {
        gap: 0.75rem;
    }
    
    /* Ajustar texto para mobile */
    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Prevenir overflow em elementos específicos */
    .flex {
        flex-wrap: wrap;
    }
    
    /* Ajustar espaçamentos para mobile */
    .space-x-4 > * + * {
        margin-left: 0.5rem;
    }
    
    .space-y-4 > * + * {
        margin-top: 0.5rem;
    }
}

/* Seção de Perguntas Frequentes (FAQ) */
.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.25rem;
    background-color: white;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-question.active {
    border-bottom: 1px solid var(--border-light);
    color: var(--primary-blue);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
}

/* Seção CTA */
.cta-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.cta-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(11, 79, 108, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
}

.cta-button {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 175, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(251, 175, 0, 0.4);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Efeitos para listas */
.feature-list li {
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
}

/* Footer/Rodapé */
footer {
    background-color: var(--dark);
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent);
    margin-right: 0.75rem;
    margin-top: 4px;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Botão WhatsApp flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Animação para o botão WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Ajustes para responsividade */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefit-card,
    .testimonial {
        margin-bottom: 2rem;
    }
    
    .cta-gradient {
        padding: 2.5rem;
    }
    
    .form-header,
    .form-body {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .btn, .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer {
        padding-top: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 1.5rem;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .testimonial {
        padding: 1.75rem;
    }
    
    .form-header,
    .form-body {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 0.75rem;
    }
    
    .cta-gradient {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.875rem;
    }

    .watermark {
        font-size: 8rem;
    }
}

/* Efeito de contagem numérica */
.counter {
    transition: all 0.5s ease;
}

/* Efeito de rolagem suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos de ondas na seção de divisão */
.wave-container {
    position: relative;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white" opacity="0.2"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="white" opacity="0.4"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white" opacity="0.6"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Borda neon para elementos de destaque */
.neon-border {
    box-shadow: 0 0 10px rgba(1, 186, 239, 0.6), 0 0 20px rgba(1, 186, 239, 0.4), 0 0 30px rgba(1, 186, 239, 0.2);
}
