:root {
    --primary-color: #008B8B; /* Verde-azulado da capa */
    --secondary-color: #DAA520; /* Amarelo dourado da capa */
    --accent-color: #FF7F50; /* Laranja/coral da capa */
    --text-color: #333;
    --light-bg: #E6F7F7; /* Tom claro do verde-azulado */
    --dark-bg: #1A1A1A; /* Fundo escuro para contraste */
    --white: #fff;
    --off-white: #F5F5F5;
    --font-main: 'Poppins', sans-serif;
    --font-alt: 'Lato', sans-serif;
    --font-text: 'Open Sans', sans-serif;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
  }
  

  
body {
    font-family: var(--font-text);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Quick Navigation */
.quick-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.quick-nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.quick-nav-item {
    padding: 8px 15px;
    margin: 3px 0;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 5px;
    font-size: 0.9em;
    text-align: center;
}

.quick-nav-item:hover {
    background-color: var(--light-bg);
}

.quick-nav-cta {
    padding: 8px 15px;
    margin-top: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
}

.quick-nav-cta:hover {
    background-color: #E8B423;
    transform: translateY(-2px);
}

/* Header & Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0 0 60px 0;
    text-align: center;
    position: relative;
    background-image: linear-gradient(to bottom, var(--primary-color), #006D6D);
}

.top-bar {
    background-color: #000;
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 0.2px;
    margin: 0;
}

.top-bar span {
    color: var(--secondary-color);
    font-weight: 700;
}

.top-bar i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero-section nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0 40px 0;
}

.logo {
    max-height: 100px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-family: var(--font-main);
    font-size: 2.8em;
    margin-bottom: 0.5em;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-text h2 {
    font-family: var(--font-alt);
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-video {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary-color);
}

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(0,0,0,0.8);
}

.play-button:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--white);
    margin-left: 5px;
}

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.play-button-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(0,0,0,0.8);
}

.play-button-large:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid var(--white);
    margin-left: 8px;
}

/* CTA Buttons - Enhanced Visuals */
.cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.4;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    border: 2px solid var(--secondary-color);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
    background-color: #E8B423; /* Slightly brighter on hover */
}

.primary-cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.primary-cta:hover:before {
    left: 100%;
}

.primary-cta i {
    margin-right: 8px;
}

.cta-large {
    font-size: 1.5em;
    padding: 20px 40px;
}

.secondary-cta {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
    border: 2px solid var(--accent-color);
}

.secondary-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
    background-color: #FF8C5A; /* Slightly brighter on hover */
}

.price-tag {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    margin-top: 5px;
}

/* Countdown Timer */
.countdown-container {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 500px;
    border: 2px solid var(--secondary-color);
}

.countdown-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.2em;
}

.countdown-title i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.8em;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.countdown-seconds .countdown-number {
    background-color: var(--danger-color);
}

.countdown-label {
    font-size: 0.8em;
    margin-top: 5px;
    color: var(--white);
}

.countdown-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--white);
    font-weight: 600;
}

/* Stock Counter */
.stock-counter {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stock-text {
    margin-bottom: 10px;
    font-weight: 600;
}

.stock-text i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.progress-bar-container {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    width: 83%;
    background-color: var(--secondary-color);
    border-radius: 6px;
    position: relative;
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: progress-animation 2s linear infinite;
}

@keyframes progress-animation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.recent-sales {
    font-size: 0.9em;
    color: var(--white);
}

.recent-sales i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* General Section Styling */
main section {
    padding: 70px 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

main section.course-content-section {
    background-color: #008B8B !important;
}

main section:nth-child(even) {
    background-color: var(--light-bg);
}

main section h2 {
    font-family: var(--font-main);
    font-size: 2.2em;
    margin-bottom: 1.2em;
    color: var(--primary-color);
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

main section h2 span {
    color: var(--secondary-color);
}

main section p, main section ul {
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.2em;
}

main section ul {
    list-style: none;
    padding: 0;
}

main section ul li {
    margin-bottom: 0.8em;
}

.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Intro Section */
.intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--white);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-text p {
    margin-bottom: 20px;
    text-align: left;
}

.intro-text strong {
    color: var(--primary-color);
}

.intro-image {
    flex: 1;
    max-width: 45%;
    position: relative;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid var(--primary-color);
}

.intro-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(10deg);
}

.intro-badge-number {
    font-size: 0.8em;
    margin-top: 3px;
}

.creator-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.creator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.creator-info {
    text-align: left;
}

.creator-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2em;
}

.creator-info p {
    margin: 0;
    font-size: 0.9em;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-bg);
    padding: 70px 5%;
}

.benefits-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.benefits-column {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefits-column.dark {
    background-color: var(--primary-color);
    color: var(--white);
    border-top: 4px solid var(--secondary-color);
}

.benefits-column h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefits-column h3 i {
    color: var(--secondary-color);
}

.benefits-column.dark h3 {
    color: var(--white);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.benefits-column.dark .benefits-list li:before {
    color: var(--secondary-color);
}

/* Comparison Box */
.comparison-box {
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-box h3 {
    font-size: 1.6em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.comparison-columns {
    display: flex;
    gap: 30px;
}

.comparison-column {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    background-color: #f8f8f8;
}

.comparison-column.highlight {
    background-color: var(--light-bg);
    border: 2px solid var(--primary-color);
}

.comparison-column h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-column h4 i {
    font-size: 1.2em;
}

.comparison-column:first-child h4 i {
    color: var(--danger-color);
}

.comparison-column.highlight h4 i {
    color: var(--success-color);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.comparison-column ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.comparison-column:first-child ul li:before {
    content: "✗";
    color: var(--danger-color);
}

/* For Whom Section */
.for-whom-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.for-whom-section h2 {
    margin-bottom: 60px;
}

.for-whom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.for-whom-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    transition: transform 0.3s ease;
}

.for-whom-item:hover {
    transform: translateY(-5px);
}

.for-whom-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    background-color: var(--primary-color);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.for-whom-content h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 0;
}

.for-whom-content p {
    margin: 0;
    text-align: left;
    font-size: 1em;
    color: #555;
}

/* Course Content Section */
.course-content-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 5%;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.course-content-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.course-content-section h3 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--white);
}

.module-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.module-tab {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.module-tab:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: var(--secondary-color);
}

.module-tab.active {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.module-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid var(--secondary-color);
}

.module-text {
    flex: 1;
    color: var(--text-color);
}

.module-text h4 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
}

.module-text p {
    margin-bottom: 20px;
    text-align: left;
}

.module-text ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.module-text ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.module-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.module-text ul li strong {
    color: var(--primary-color);
}

.module-preview {
    margin-top: 20px;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
}

.preview-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.preview-link i {
    font-size: 1.2em;
}

.module-image {
    flex: 1;
    max-width: 45%;
}

.module-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    border: 2px solid var(--primary-color);
}

/* Price Section */
.price-section {
    background-color: var(--light-bg);
    padding: 80px 5%;
    text-align: center;
}

.price-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-color);
}

.limited-offer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.limited-offer i {
    margin-right: 5px;
}

.price-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 10px;
}

.original-price span {
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 3em;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.price-guarantee {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.price-savings {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.price-savings i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.security-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.security-seal img {
    height: 60px;
    width: auto;
}

.security-seal i {
    font-size: 2em;
    color: var(--primary-color);
}

.security-seal span {
    font-size: 0.9em;
    color: #555;
    font-weight: 600;
}

.security-seals.large .security-seal img {
    height: 80px;
}

.security-seals.large .security-seal i {
    font-size: 2.5em;
}

.payment-methods {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.payment-methods p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2em;
    color: #777;
}

/* Bonus Section */
.bonus-section {
    background-color: var(--white);
    padding: 80px 5%;
}

.bonus-header {
    margin-bottom: 50px;
}

.bonus-badge {
    background-color: var(--danger-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bonus-subtitle {
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 10px;
}

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

.bonus-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

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

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bonus-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-item p {
    font-size: 1em;
    margin-bottom: 20px;
}

.bonus-value {
    font-weight: 600;
    color: #555;
}

.bonus-value .strikethrough {
    text-decoration: line-through;
    color: #777;
    margin-right: 5px;
}

.bonus-free {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
}

.bonus-total-value {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 600;
}

.bonus-total-value .strikethrough {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
}

.bonus-free-large {
    font-size: 1.5em;
    color: var(--secondary-color);
}

.bonus-limited {
    font-size: 0.8em;
    color: var(--danger-color);
    margin-top: 10px;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 80px 5%;
}

.testimonials-section h2 {
    margin-bottom: 20px;
}

.testimonials-subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size: 1.2em;
}

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

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

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

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1em;
}

.testimonial p strong {
    color: var(--primary-color);
}

.testimonial-author {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5em;
}

.testimonial-result {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 0.5em;
    font-style: italic;
    background-color: rgba(0, 139, 139, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.testimonial-result strong {
    color: var(--primary-color);
}

.video-testimonial {
    margin: 60px auto;
    max-width: 800px;
}

.video-testimonial h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid var(--primary-color);
}

.video-container img {
    width: 100%;
    display: block;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    max-width: 800px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #555;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--light-bg);
    padding: 70px 5%;
}

.guarantee-section h2 {
    margin-bottom: 40px;
}

.guarantee-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 3px solid var(--secondary-color);
}

.guarantee-icon {
    font-size: 3.5em;
    color: var(--secondary-color);
}

.guarantee-seal {
    width: 120px;
    height: auto;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 0;
}

.guarantee-text p {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    text-align: left;
}

.guarantee-text p:last-child {
    margin-bottom: 0;
}

.guarantee-text strong {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 5%;
}

.faq-section h2 {
    margin-bottom: 50px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--light-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    background-color: var(--light-bg);
    color: var(--primary-color);
    cursor: pointer;
    padding: 20px 25px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-family: var(--font-alt);
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '\002B';
    font-size: 1.3em;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: var(--white);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

/* Quando ativa */
.faq-item.active .faq-answer {
    padding: 15px 20px;
    overflow-y: auto;
}

/* Estilo da barra de rolagem para navegadores baseados em WebKit */
.faq-answer::-webkit-scrollbar {
    width: 6px;
}
.faq-answer::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}
.faq-answer::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}


.faq-answer p {
    margin: 0;
    text-align: left;
}

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

/* Final CTA Section */
.final-cta-section {
    background-color: var(--light-bg);
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.final-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.final-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-price {
    margin-bottom: 30px;
}

.final-price-original {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 10px;
}

.final-price-original span {
    text-decoration: line-through;
}

.final-price-current {
    font-size: 3em;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.final-price-installment {
    font-size: 1.1em;
    color: #555;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 5% 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    max-height: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    font-weight: 600;
}

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

.footer-copyright {
    font-size: 0.9em;
    color: #aaa;
}

.footer-copyright p {
    margin-bottom: 10px;
}

/* Sticky CTA for Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-top: 2px solid var(--primary-color);
    display: none;
}

.sticky-countdown {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1em;
}

.sticky-cta-mobile .cta-button {
    margin: 0;
    padding: 12px 20px;
    font-size: 1.1em;
    width: 100%;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1001;
    max-width: 300px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s ease;
}

.notification-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-text {
    flex: 1;
}

.notification-text p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.notification-product {
    font-weight: 700;
    color: var(--primary-color);
}

.notification-time {
    font-size: 0.8em;
    color: #777;
}

.notification-close {
    background: none;
    border: none;
    color: #777;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.4em;
    }
    
    .hero-text h2 {
        font-size: 1.3em;
    }
    
    .intro-content, 
    .module-content {
        flex-direction: column;
    }
    
    .intro-image, 
    .module-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .for-whom-container {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .quick-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-text h2 {
        font-size: 1.2em;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    
    main section h2 {
        font-size: 1.8em;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .bonuses {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta-mobile {
        display: flex;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.9em;
        padding: 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8em;
    }
    
    .hero-text h2 {
        font-size: 1.1em;
    }
    
    .countdown-container {
        padding: 10px;
    }
    
    .countdown-number {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    
    .countdown-label {
        font-size: 0.7em;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    main section {
        padding: 50px 5%;
    }
    
    main section h2 {
        font-size: 1.6em;
    }
    
    .for-whom-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .for-whom-content {
        text-align: center;
    }
    
    .module-content {
        padding: 20px;
    }
    
    .module-text h4 {
        font-size: 1.5em;
    }
    
    .comparison-columns {
        flex-direction: column;
    }
    
    .final-price-current {
        font-size: 2.5em;
    }
}
