:root {
    /* Updated Palette */
    --primary-purple: #97414D; /* User's "Roxo" (actually a muted red/burgundy) */
    --secondary-purple: #7a323c; /* Darker variant for gradients */
    --accent-blue: #2565A2; /* User's Blue */
    --accent-blue-dark: #1a4b7c;
    --highlight-yellow: #E7C567; /* User's Yellow (Gold) */
    
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-radius: 20px;
}

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

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--primary-purple);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--highlight-yellow) !important;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

.navbar-brand .fa-satellite {
    font-size: 1.5rem;
    color: var(--highlight-yellow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(231, 197, 103, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(231, 197, 103, 0.8));
    }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    font-size: 0.95rem;
}

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

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

.btn-cta {
    background: var(--highlight-yellow);
    color: var(--primary-purple) !important;
    font-weight: 700;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 197, 103, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 197, 103, 0.6);
    background: #deb64b;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--text-white);
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 80vh; /* Reduced height slightly since image is gone */
    overflow: hidden;
    position: relative;
}

.highlight {
    color: var(--highlight-yellow);
    position: relative;
    display: inline-block;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.btn-hero {
    background-color: var(--accent-blue);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 101, 162, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--accent-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 101, 162, 0.5);
}

.image-wrapper {
    position: relative;
}

.main-img {
    border: 8px solid rgba(255,255,255,0.1);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    min-width: 200px;
    animation: float 4s ease-in-out infinite;
}

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

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Divider */
.custom-shape-divider-bottom-1672345678 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1672345678 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1672345678 .shape-fill {
    fill: #FFFFFF;
}

/* Features Section */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.text-highlight-color {
    color: var(--primary-purple);
}

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
    text-align: center;
}

.feature-card:hover, .feature-card.active {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: transparent;
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(151, 65, 77, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Info Section */
.info-section {
    background-color: var(--primary-purple);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-white);
}

.btn-warning {
    background-color: var(--highlight-yellow);
    border: none;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #deb64b;
    color: #fff;
}

/* Plans Section */
.plans-section {
    background-color: #fafafa;
}

.plan-card {
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    overflow: hidden;
}

.transform-scale-1 {
    transform: scale(1.05);
    z-index: 2;
}

/* Ribbon */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: var(--highlight-yellow);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 1px rgba(255,255,255,.2);
    text-transform: uppercase;
    text-align: center;
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

.footer-brand {
    color: var(--highlight-yellow);
    font-size: 2rem;
}

.footer-brand .fa-satellite {
    color: var(--highlight-yellow);
}

.footer-brand .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-whatsapp {
    background-color: #25D366;
    border: none;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    color: white;
}

/* Utils */
.text-primary {
    color: var(--accent-blue) !important;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-blue-dark);
    border-color: var(--accent-blue-dark);
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
        text-align: center;
    }
    .hero-text .d-flex {
        justify-content: center;
    }
    .floating-card {
        display: none;
    }
    .transform-scale-1 {
        transform: scale(1);
    }
    .info-section .row {
        text-align: center;
    }
    .info-section .d-flex {
        justify-content: center;
    }
    .ps-lg-5 {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text .lead {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }
    .hero-text .d-flex.gap-3 {
        gap: 0.75rem !important;
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem !important;
    }
    .hero-text .d-flex .btn {
        width: 100%;
        max-width: 280px;
    }
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text .badge {
        font-size: 0.75rem;
    }
}