/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6a0dad; /* Deep Purple */
    --secondary-color: #ff6b6b; /* Coral Red */
    --accent-color: #ffd166; /* Sunny Yellow */
    --dark-background: #1a1a2e; /* Dark Blue-Purple */
    --light-text: #e0e0e0;
    --dark-text: #333;
    --gradient-start: #6a0dad;
    --gradient-end: #483d8b;
    --card-background: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.section-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    color: var(--light-text);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #28a745, #218838); /* Green gradient */
    color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #218838, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.btn-plan {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1em;
    padding: 15px 0;
}

.btn i {
    margin-right: 8px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.8); /* Dark Blue-Purple with transparency */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--light-text);
}

.nav-brand .logo-img {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

.nav-brand i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 1.1em;
    position: relative;
}

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

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

.nav-mobile {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--light-text);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--dark-background);
    text-align: center;
}

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

.service-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    opacity: 0.8;
    flex-grow: 1;
}

.service-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    text-align: center;
}

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

.plan-card {
    background: var(--card-background);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: var(--dark-background);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-header h3 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.plan-price {
    margin-bottom: 25px;
}

.plan-price .currency {
    font-size: 1.5em;
    font-weight: 600;
    vertical-align: super;
    color: var(--light-text);
}

.plan-price .amount {
    font-size: 4em;
    font-weight: 700;
    color: var(--light-text);
}

.plan-price .period {
    font-size: 1.2em;
    opacity: 0.8;
    color: var(--light-text);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    opacity: 0.9;
}

.plan-features .feature i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-background);
    text-align: center;
}

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

.feature-item {
    background: var(--card-background);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95em;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--light-text);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method i {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-right: 15px;
}

.contact-method h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 1em;
    margin-bottom: 0;
    opacity: 0.8;
}

.contact-cta {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-cta h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 16.5px 27.5px;
    font-size: 1.65em;
}

/* Footer */
.footer {
    background: var(--dark-background);
    color: var(--light-text);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
    text-align: left;
}

.footer-brand .nav-brand {
    font-size: 2em;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column a {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-title {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1.5em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid, .plans-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand, .footer-links {
        text-align: center;
    }

    .footer-column {
        min-width: unset;
    }
}

/* Video Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 900px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.close-button {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}




.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.hero video {
    width: 90%;
    height: 90%;
    object-fit: cover; /* Cover the entire section */
}

.fixed-price-highlight {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: #28a745; /* Green color */
    color: #fff;
    padding: 16.5px 27.5px; /* Aumento de 10% */
    border-radius: 10px;
    font-size: 1.65em; /* Aumento de 10% */
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 1.5s infinite alternate;
    text-decoration: none; /* Remove underline for links */
    display: flex; /* To center content */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .fixed-price-highlight {
        font-size: 1.2em;
        padding: 10px 20px;
        bottom: 10px;
        right: 10px;
    }
}


