:root {
    --primary-blue: #63b3ed;
    --dark-gray: #2d3748;
    --gradient-start: #1a202c;
    --gradient-end: #2d3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* secure-contact.css */
.secure-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.secure-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--dark-gray) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 90px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    border: 1px solid rgba(99, 179, 237, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2899, 179, 237, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #0d1117 0%, #1a202c 50%, #2d3748 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 179, 237, 0.3);
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 179, 237, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline-custom:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Card Gradient */
.card-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--dark-gray) 100%);
    border: 1px solid rgba(99, 179, 237, 0.2);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-gradient:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 179, 237, 0.2);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 179, 237, 0.3);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0d1117 0%, #1a202c 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a202c 0%, #2d3748 100%);
}

.product-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--dark-gray) 100%);
    border: 1px solid rgba(99, 179, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 179, 237, 0.25);
}

.product-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0;
}
.old {
    font-size: 1.1rem;
    color: rgb(173, 181, 189);
    display: inline-block;
    position: relative;
    text-decoration: line-through;
}


.price-period {
    font-size: 1rem;
    color: #a0aec0;
}

.product-image {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    width: 100%;
}


/* Team Pack Toggle Button - Products Section */
.team-toggle-btn-products {
    width: 100%;
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.1) 0%, rgba(66, 153, 225, 0.1) 100%);
    border: 2px solid rgba(99, 179, 237, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0;
    font-weight: 600;
    color: #a0aec0;
}

.team-toggle-btn-products:hover {
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.15) 0%, rgba(66, 153, 225, 0.15) 100%);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.team-toggle-btn-products i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.team-toggle-btn-products.active i {
    transform: rotate(180deg);
}

.team-toggle-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-badge-products {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Team Pack Expandible - Products */
.team-pack-products {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.team-pack-products.show {
    max-height: 250px;
    opacity: 1;
    margin-bottom: 1rem;
}

.team-pack-content-products {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.08) 0%, rgba(66, 153, 225, 0.08) 100%);
    border: 2px solid rgba(99, 179, 237, 0.25);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.team-pack-content-products::before {
    content: '🏢';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 3rem;
    opacity: 0.1;
}

.team-title-products {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.team-price-products {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.team-price-products small {
    font-size: 0.9rem;
    color: #a0aec0;
    font-weight: 400;
}

.team-note-products {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.team-note-products strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .team-pack-products.show {
        max-height: 280px;
    }
    
    .team-price-products {
        font-size: 1.6rem;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
}

.use-case-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(99, 179, 237, 0.1);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4299e1 100%);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a202c 0%, #0d1117 100%);
}

.clientSwiper .card {
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--dark-gray) 100%);
    border: 1px solid rgba(99, 179, 237, 0.2);
    transition: all 0.3s ease;
}

.clientSwiper .card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 179, 237, 0.2);
}

.clientSwiper img {
    max-height: 80px;
    object-fit: contain;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    opacity: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0d1117 0%, #1a202c 100%);
}

.review-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--dark-gray) 100%);
    border: 1px solid rgba(99, 179, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    text-align: center;
}

/* Contact Form */
.form-control-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 179, 237, 0.2);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(99, 179, 237, 0.25);
    color: #fff;
}

.form-control-dark::placeholder {
    color: #718096;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gradient-start) 0%, #0d1117 100%);
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(99, 179, 237, 0.2);
    --bs-heading-color: rgb(173, 181, 189);
}

/* Para diferentes contextos */
.footer-link,
.footer-link .secure-link {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:hover a {
    color: var(--primary-blue);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 179, 237, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(99, 179, 237, 0.3);
    background: transparent;
    color: #a0aec0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover, 
.lang-btn.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}
.lang-btn.active {
    pointer-events: none;
    text-decoration: none;
    font-weight: bold;
}
    
/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary-custom, .btn-outline-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .use-case-item {
        flex-direction: column;
        text-align: center;
    }

    .use-case-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
}





