/*!
Theme Name: VendasFaustinoLab
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vendasfaustinolab
*/

/* Variables */
:root {
    --primary-color: #e0a238; /* Gold */
    --secondary-color: #5a0462; /* Deep Purple */
    --tertiary-color: #373435; /* Dark Gray */
    --bg-dark: #0f172a; /* Keep dark blue base for depth */
    --bg-card: rgba(55, 52, 53, 0.7); /* Based on tertiary */
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(189, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(189, 0, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.hero-buttons .btn + .btn {
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-logo img {
    max-height: 75px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.btn-orcamento a {
    background: var(--primary-color);
    color: var(--bg-dark) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
}

.btn-orcamento a:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, var(--secondary-color) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(224, 162, 56, 0.15), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(224, 162, 56, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 162, 56, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 40%; right: 10%; animation-delay: 2s; }
.card-3 { bottom: 10%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo img {
    max-height: 60px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Checkout Section */
.checkout-section {
    padding: 100px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.checkout-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.checkout-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.checkout-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.price-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.checkout-features {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 0;
}

.checkout-features li {
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-features i {
    color: var(--secondary-color);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--primary-color);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
}

.step-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tech-circle {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    margin: 0 auto;
    position: relative;
}

.tech-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--bg-dark), rgba(189, 0, 255, 0.05));
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
}

.step-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-thumb {
    height: 200px;
    background: #2d3748;
    position: relative;
}

.portfolio-thumb::after {
    content: 'PREVIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.1);
    font-weight: 800;
    font-size: 1.5rem;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

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

.cta-section .btn-primary {
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--bg-dark);
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: var(--glass-border);
}

.client-info {
    margin-bottom: 20px;
}

.client-info h4 {
    margin-bottom: 2px;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #0b1120;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.address-list li {
    display: flex;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.address-list i {
    color: var(--primary-color);
    margin-top: 4px;
}

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

.social-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.btn-login {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

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

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-image {
        display: none; /* Hide floating cards on smaller screens for simplicity or adjust */
    }
    
    .about-grid, .methodology-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-container {
        display: none; /* JS would be needed to toggle this, or use CSS hover/checkbox hack. For now, assuming standard WP menu toggle works or I'll add simple CSS toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Simple CSS Toggle logic if JS not present, but usually theme has JS. 
       I'll rely on the theme's JS or add a simple hover for now. 
       Actually, I'll make it always visible for now or just standard mobile menu behavior.
    */
    .main-navigation.toggled .menu-container {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        display: block;
        text-align: center;
        margin: 0 !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .hero-section {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
    }

    .header-logo img {
        max-height: 50px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('http://faustinolab.com/wp-content/uploads/2025/05/bg-about.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    color: #fff;
    margin: 30px 0 20px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.image-placeholder {
    height: 500px;
    background: var(--bg-card);
    border-radius: 20px;
    border: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary-color);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: transparent;
    padding: 30px;
    border-radius: 15px;
    border: var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(189, 0, 255, 0.05), transparent 70%);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.method-step {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 3px solid var(--primary-color);
}

.step-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.method-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

/* Optional Services */
.optional-section {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.optional-section h2, .optional-section p, .optional-section h3 {
    color: #fff;
}

.optional-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    height: auto;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: var(--glass-border);
    display: flex;
    flex-direction: column;
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-content {
    position: relative;
    padding: 25px;
    background: var(--bg-card);
    transform: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-item:hover .portfolio-content {
    transform: none;
}

.portfolio-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.btn-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
}

/* CTA Specialist */
.cta-specialist {
    padding: 100px 0;
    text-align: center;
    background: url('http://faustinolab.com/wp-content/uploads/2025/05/bg-cta.jpg') center/cover;
    position: relative;
}

.cta-specialist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
}

.cta-specialist .container {
    position: relative;
    z-index: 1;
}

/* Exclusive Section */
.exclusive-section {
    padding: 100px 0;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: var(--glass-border);
}

.testimonial-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-company {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid, .methodology-grid, .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 40px;
    border: var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-body h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.modal-body h3 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.modal-body p, .modal-body ul {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 5px;
}

.modal-body a {
    color: var(--primary-color);
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal-body h2 {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.faq-item summary .icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

details[open] summary .icon {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding-top: 20px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Stagger delays for grids */
.portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.portfolio-item:nth-child(3) { transition-delay: 0.3s; }
.portfolio-item:nth-child(4) { transition-delay: 0.4s; }
.portfolio-item:nth-child(5) { transition-delay: 0.5s; }
.portfolio-item:nth-child(6) { transition-delay: 0.6s; }
.portfolio-item:nth-child(7) { transition-delay: 0.7s; }

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.faq-content p {
    margin-bottom: 15px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content strong {
    color: var(--primary-color);
}
