/* AQVEX - Custom Styles */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #8f2cad;
    --secondary-color: #E74C3C;
    --tertiary-color: #3498DB;
    --neutral-color: #ECF0F1;
    --text-color: #2C3E50;
    --white-color: #FFFFFF;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
    --roxo-color:#ab3dcc;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}


body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}



.texto-sobre {
   
   padding: 12px !important;

}

.texto-sobre p{text-align: justify;}

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

.destaque{
    color: var(--roxo-color);
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 10px;
    font-size: 15px;
}


/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
   
    
}

.navbar .logo {
    margin: 0;
    padding: 0;
    
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(44, 62, 80, 0.1);
}



/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

/* .hero-section  {
    
    padding: 70px 0 50px !important;
} */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-size: 3rem;
    
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 0rem;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

.hero-stats {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 10;
}

.floating-card .card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    background: var(--white-color);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* ===== BENEFITS SECTION ===== */
.benefit-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f8f9fa;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #a232b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 2rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.planos-card {
    background: #E9EDF6;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #ddcbe6;
    text-align: center;
    
}

.planos-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.personalizar{
    margin: 0 auto;
    padding: 0;
    background: #E9EDF6;
    
    transition: var(--transition);
   
    text-align: center;
}

.personalizar .section-title{
    margin-top: 15px;
    font-size: 1.5rem;
}

.personalizar .section-subtitle{
    font-size: 1rem;

}



.planos-item {
   box-shadow: var(--shadow-sm); 
   max-width: 450px;
   margin-bottom: 10px;
   margin-left: 80px;
    
}
.planos-item .item {
    border-radius: 10px;
}

.personalizar .resource-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* ===== RESOURCES SECTION ===== */
.resource-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.resource-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #a232b5);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.resource-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.resource-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}



.planos h4{
    font-size: 1.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f8f9fa;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
}

.testimonial-content p {
    font-style: italic;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
}

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

.author-info h6 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.author-info small {
    color: #6c757d;
}

/* ===== ABOUT SECTION ===== */
.about-stat {
    text-align: center;
    padding: 1rem;
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* ===== CONTACT SECTION ===== */
.contact-form {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f8f9fa;
}

.form-control {
    border: 1px solid #c5c8ca;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    max-width: 99%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    
}

.whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 18px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }

.contact-info {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f8f9fa;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #a232b5);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}



/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a !important;
}

footer h5, footer h6 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--white-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== BACK TO TOP BUTTON ===== */
.btn-floating {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-floating:hover {
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        padding: 80px 0 80px;
    }
    
    .floating-card {
        bottom: -30px;
        right: -30px;
    }


}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .planos-item {  
        margin-left: 0px;        
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .resource-item {
        padding: 1.25rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .planos-item {  
        margin-left: 0px;        
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    
    
    .resource-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .resource-icon {
        margin: 0 auto 1rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .planos-item {  
        margin-left: 0px;        
    }
    .row>* {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .floating-card {
        position: static;
        margin-top: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 100px 0 40px;
    }


    .planos-item {  
        margin-left: 0px;        
    }
    .row-planos-card{
       padding: 20px; 
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .benefit-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .resource-icon {
        margin: 0 auto 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 1.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
        
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .contact-content{
        margin: 0 auto;
        
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-floating {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float{
        bottom: 70px;
        right: 15px;
    }

    
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: var(--border-radius-lg);
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 1px solid #ecc7f7;
    /* outline-offset: 9px; */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .benefit-card,
    .resource-item,
    .testimonial-card,
    .contact-form,
    .contact-info {
        border: 2px solid var(--text-color);
    }
}

