/* Base Styles */
:root {
    --dark-blue: #0A303A;
    --graphite: #2C3539;
    --accent: #FF5722;
    --accent-dark: #E64A19;
    --light: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --deep-red: #7D0633;
    --dark-purple: #3A0F53;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: linear-gradient(135deg, var(--dark-blue), var(--graphite));
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

.cta-large {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.cta-large i {
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.cta-medium {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--accent);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-medium:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.cta-medium i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-medium:hover i {
    transform: translateX(5px);
}

.center-cta {
    text-align: center;
    margin-top: 40px;
}

/* Header */
header {
    background-color: rgba(10, 48, 58, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.video-link {
    display: flex;
    align-items: center;
    color: var(--accent);
}

.video-link i {
    margin-left: 5px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--deep-red), var(--dark-purple));
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(255, 87, 34, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: pulseBackground 8s infinite alternate ease-in-out;
}

@keyframes pulseBackground {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--graphite), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

.hero-content h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    font-weight: 400;
}

.hero-content .cta-large {
    background: linear-gradient(to right, var(--accent), var(--accent-dark));
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    }
}

/* Teaser Benefits */
.teasers {
    padding: 100px 0;
    background-color: var(--graphite);
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.teaser-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.teaser-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.teaser-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.teaser-item h3 {
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background: linear-gradient(to right, var(--dark-purple), var(--deep-red));
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.featured-content-centered {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.featured-content-centered h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.featured-content-centered h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.featured-content-centered p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #f0f0f0;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 10px;
}

.feature-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.featured-content-centered .cta-large {
    margin-top: 20px;
    font-size: 1.3rem;
    padding: 18px 35px;
}

/* Trust Badges Section */
.trust-section {
    padding: 100px 0;
    background-color: var(--dark-blue);
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.trust-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    width: 170px;
    height: 170px;
    justify-content: center;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.badge i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background-color: #0a1922;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #111, #222);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #222, #333);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.5));
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-placeholder:hover i {
    transform: scale(1.1);
}

.video-placeholder span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

.video-disclaimer {
    font-size: 1rem !important;
    color: #ccc !important;
    font-style: italic;
    margin-top: 20px !important;
}

/* Coming Up Section */
.coming-up {
    padding: 100px 0;
    background-color: var(--graphite);
}

.coming-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.coming-content .cta-large {
    margin-top: 40px;
}

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent);
    padding: 15px 0;
    text-align: center;
    z-index: 99;
}

.urgency-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

#timer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}

.urgency-bar p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 50px 0 100px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .teaser-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        display: none;
    }
    
    .coming-content p {
        font-size: 1.1rem;
    }
    
    .featured-content-centered h2 {
        font-size: 2.2rem;
    }
    
    .featured-content-centered p {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 12px 20px;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .featured-content-centered .cta-large {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .badge {
        width: 140px;
        height: 140px;
        padding: 15px;
    }
    
    .badge i {
        font-size: 2.5rem;
    }
    
    .badge span {
        font-size: 0.9rem;
    }
    
    .video-content h2 {
        font-size: 2.2rem;
    }
    
    .video-content p {
        font-size: 1.2rem;
    }
    
    .video-placeholder i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .cta-large {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .countdown {
        font-size: 1rem;
    }
    
    .featured-content-centered h2 {
        font-size: 1.8rem;
    }
    
    .featured-content-centered p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .trust-section h2 {
        font-size: 2rem;
    }
    
    .video-content h2 {
        font-size: 1.8rem;
    }
    
    .video-content p {
        font-size: 1.1rem;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-placeholder span {
        font-size: 1rem;
    }
}

/* Add styles for the testimonial section */
.testimonial-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--graphite));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 87, 34, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(58, 15, 83, 0.15) 0%, transparent 40%);
    z-index: 0;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.testimonial-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.testimonial-quote i.fa-quote-left {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.7;
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
    position: absolute;
    top: 25px;
    left: 30px;
}

.testimonial-quote p {
    color: #f0f0f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 30px;
    font-style: italic;
    padding-top: 35px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-rating {
    margin-bottom: 10px;
}

.author-rating i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-left: 3px;
    filter: drop-shadow(0 0 3px rgba(255, 87, 34, 0.3));
}

.testimonial-author span {
    color: #ddd;
    font-weight: 600;
    font-size: 1.05rem;
}

.testimonial-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 45%;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 50px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.stat-label {
    color: #f0f0f0;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .testimonial-quote {
        padding: 35px 25px;
    }
    
    .testimonial-quote i.fa-quote-left {
        font-size: 2rem;
        top: 20px;
        left: 25px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        padding-top: 30px;
    }
    
    .testimonial-stats {
        padding: 25px 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Adicionar regras para telas menores para resolver problema dos números estatísticos */
@media (max-width: 480px) {
    .stat-number {
        font-size: 1.8rem;  /* Reduzir tamanho da fonte para caber em telas pequenas */
    }
    
    .stat-label {
        font-size: 0.9rem;  /* Reduzir tamanho da fonte para caber em telas pequenas */
        hyphens: auto;      /* Permitir hifenização automática */
        word-wrap: break-word; /* Permitir quebra de palavras */
    }
    
    .stat-item {
        min-width: 80px;   /* Reduzir largura mínima */
        padding: 10px;     /* Reduzir padding */
        max-width: 100%;   /* Garantir que não ultrapasse a largura do container */
    }
    
    .testimonial-stats {
        gap: 15px;         /* Reduzir espaçamento entre itens */
        flex-direction: column; /* Em telas muito pequenas, exibir em coluna */
    }
}

/* Product Information Styles */
.product-info-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 30px auto;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-highlights {
    text-align: center;
}

.product-highlights h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #ffffff;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent);
}

.product-tagline {
    font-size: 1.2rem;
    margin: 25px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.product-info-container .cta-large {
    margin-top: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .product-info-container {
        padding: 20px;
    }
    
    .product-highlights h3 {
        font-size: 1.5rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .product-tagline {
        font-size: 1.1rem;
    }
}

/* Logo Styles */
.logo h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: none;
}

.logo h1 span {
    color: var(--accent);
    position: relative;
}

.logo h1 span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover h1 span::after {
    transform: scaleX(1);
    transform-origin: left;
} 