/* 
* WhatsIA - Landing Page de Automação Humanizada no WhatsApp
* Estilos personalizados
*/

:root {
    --primary-color: #00bae5;
    --primary-blue: #00bae5;
    --secondary-color: #2aa876;
    --light-gray: #f8f9fa;
    --dark: #2c3e50;
    --white: #ffffff;
    --text-color: #4a4a4a;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn {
    transition: var(--transition);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: none;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2aa876;
    border-color: #2aa876;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(50, 193, 135, 0.2);
}

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

.btn-light:hover,
.btn-light:focus {
    background-color: #f0f0f0;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rounded-pill {
    border-radius: 50px !important;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #777;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.brand-img img{
   width: 190px;
    
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

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

.navbar .btn {
    margin-left: 15px;
    padding: 0.5rem 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgb(0, 255, 231), transparent), linear-gradient(to bottom, rgb(0, 135, 255) 0%, rgb(0, 31, 196) 50%, rgb(0, 52, 255) 100%);
    min-height: 728px;
    top: 5em;
}
.slide-text{
    margin-top: -3em;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-image-container {
    position: relative;
    margin-top: 2rem;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    border-radius: 20px;
}

.chat-bubble {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 57%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}

.chat-avatar:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
}

.chat-avatar:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 85%;
    font-size: 0.85rem;
}

.message.client {
    background: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.assistant {
    background: #e3f2fd;
    color: var(--dark-gray);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* Como Funciona Section */
.step-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(50, 193, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Benefícios Section */
.benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(50, 193, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon svg {
    color: var(--primary-color);
    width: 25px;
    height: 25px;
}

.benefit-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.benefit-content p {
    margin-bottom: 0;
}

/* Depoimentos Section */
.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.quote-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(50, 193, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon svg {
    color: var(--primary-color);
    width: 25px;
    height: 25px;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    margin-bottom: 0;
    color: #777;
    font-size: 0.9rem;
}

/* Comparativo Section */
.comparison-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.comparison-before {
    border-left: 5px solid #ff6b6b;
}

.comparison-after {
    border-left: 5px solid var(--primary-color);
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.comparison-before h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #ff6b6b;
}

.comparison-after h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.comparison-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.comparison-list li svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.comparison-before .comparison-list li svg {
    color: #ff6b6b;
}

.comparison-after .comparison-list li svg {
    color: var(--primary-color);
}

.comparison-arrow {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.comparison-arrow svg {
    color: var(--white);
    width: 30px;
    height: 30px;
}

/* CTA Section */
.cta-content {
    padding-right: 30px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.1rem;
}

.cta-features li svg {
    margin-right: 10px;
    color: var(--white);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--dark-gray);
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(50, 193, 135, 0.25);
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #f0f0f0;
    padding: 80px 0 30px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-link svg {
    color: var(--white);
    width: 18px;
    height: 18px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f0f0f0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-contact li svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 12px 15px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 15px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

@media  (min-width:450px ) and (max-width: 980px) {
    .slide-text{
        margin-top: 0em;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-container {
        margin-top: 50px;
    }

    .chat-bubble {
        bottom: -20px;
        right: -20px;
        width: 90%;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .navbar .btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

.cta-section {
            
            color: white;
        }

        .done-attendance{
            color: #000000;
            font-weight: 600;
        }
        
        .whatsapp-cta-btn {
            background: linear-gradient(135deg, #25D366, #128C7E) !important;
            border-color: #25D366 !important;
            color: white !important;
            font-weight: 600;
            border-radius: 12px;
            padding: 15px 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        .actionwa{
            border: 1px solid #0bbde6;
        }
        .whatsapp-cta-btn:hover {
            background: linear-gradient(135deg, #128C7E, #25D366) !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            color: white !important;
        }
        
        .whatsapp-cta-btn i {
            font-size: 1.2rem;
        }
        
         .btn-outline-blue {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            background-color: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline-blue:hover {
            color: white;
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 135, 255, 0.3);
        }

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .chat-bubble {
        width: 90%;
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 3rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .chat-bubble {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        margin-top: -20px;
        z-index: 2;
    }
    
    .message {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    
    .hero-image-container {
        margin-top: 3rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .chat-bubble {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        margin-top: -20px;
        z-index: 2;
    }
    
    .message {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    .chat-bubble {
        padding: 10px;
        border-radius: 10px;
    }
    
    .chat-avatar {
        width: 25px;
        height: 25px;
    }
    
    .chat-name {
        font-size: 0.8rem;
    }
    
    .message {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    .chat-bubble {
        padding: 10px;
        border-radius: 10px;
    }
    
    .chat-avatar {
        width: 25px;
        height: 25px;
    }
    
    .chat-name {
        font-size: 0.8rem;
    }
    
    .message {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.active {
    opacity: 1;
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}