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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #07233b;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 34, 59, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(7, 34, 59, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #07233b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #efd85d;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #efd85d;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #07233b;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #ffffff;
}

.highlight {
    color: #efd85d;
    display: block;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0px;
    color: #ffffff;
    line-height: 1.4;
}

.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0px;
    margin-bottom: 5px;
    color: #b0b0b0;
    line-height: 1.4;
}

.cta-button {
    background: #efd85d;
    color: #07233b;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(239, 216, 93, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #e6cf4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 207, 74, 0.4);
    scale: 1.02;
}

.cta-button.secondary {
    background: transparent;
    color: #efd85d;
    border: 2px solid #efd85d;
    box-shadow: 0 4px 15px rgba(239, 216, 93, 0.2);
}

.cta-button.secondary:hover {
    background: transparent;
    color: #efd85d;
    border-color: #efd85d;
    box-shadow: 0 6px 20px rgba(239, 216, 93, 0.4);
    transform: translateY(-2px);
    scale: 1.02;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Problem Section */
.problem-section {
    background: #0a2d4a;
    padding: 80px 0;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.3;
}

.problem-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

.solution-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: #07233b;
    padding: 80px 0;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.6;
}

.about-tagline {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.guide-includes {
    text-align: center;
}

.guide-includes h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

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

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #0a2d4a;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(239, 216, 93, 0.2);
}

.include-item:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 216, 93, 0.4);
}

.include-item i {
    font-size: 1.5rem;
    color: #efd85d;
    margin-top: 5px;
}

.include-item p {
    color: #ffffff;
    line-height: 1.5;
    font-size: 1.1rem;
}

.purchase-btn {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #0a2d4a;
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.rating {
    color: #D0453B;
    font-size: 2rem;
    font-weight: 700;
}

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

.testimonial-card {
    background: #07233b;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(239, 216, 93, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 216, 93, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(239, 216, 93, 0.3);
}

.testimonial-info {
    flex: 1;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-card .stars i {
    color: #FFD700 !important;
}

.testimonials-section .stars i {
    color: #FFD700 !important;
}

.testimonials-section {
    position: relative;
    z-index: 1;
}

.testimonials-section .floating-element {
    display: none;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #efd85d;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    background: #07233b;
    padding: 20px;
    color: white;
}

.benefits-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.3;
}

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

.benefit-card {
    background: rgba(10, 45, 74, 0.8);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 216, 93, 0.2);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 216, 93, 0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #efd85d;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.journey-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.journey-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.fruit-metaphor {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.fruit-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer {
    font-size: 1rem !important;
    font-style: italic;
    opacity: 0.9;
    color: #b0b0b0;
}

/* Guarantee Section */
.guarantee-section {
    background: #07233b;
    padding: 80px 0;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    font-size: 4rem;
    color: #efd85d;
    margin-bottom: 20px;
}

.guarantee-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b0b0b0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0a2d4a;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

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

.faq-item {
    border: 1px solid rgba(239, 216, 93, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #07233b;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(239, 216, 93, 0.1);
    border-color: rgba(239, 216, 93, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #07233b;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #ffffff;
}

.faq-question:hover {
    background: #0a2d4a;
    color: #ffffff;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #efd85d;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 25px;
    color: #b0b0b0;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section */
.contact-section {
    background: #07233b;
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.contact-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #b0b0b0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #0a2d4a;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: #0a2d4a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #efd85d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #051a2e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #efd85d;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-content p {
    margin-bottom: 20px;
    color: #b0b0b0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #efd85d;
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }


    .problem-content h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }


    .faq-section h2 {
        font-size: 2.2rem;
    }

    .contact-section h2 {
        font-size: 2.1rem;
    }

    .guarantee-section h2 {
        font-size: 2.1rem;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .book-rating {
        margin-top: 10px;
    }

    .rating-content {
        gap: 6px;
        flex-direction: column;
    }

    .rating-score {
        font-size: 0.9rem;
    }

    .book-rating .stars i {
        font-size: 1rem;
    }

    .rating-label {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .problem-content h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.7rem;
    }

    .include-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-card {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.show {
    opacity: 1;
    transform: translateX(0);
}


/* Container que centraliza o conteúdo */
.hero-content {
    text-align: center;
    padding: 0 15px;
}

/* Container específico para a imagem */
.hero-image-container {
    margin: 25px 0;
}

/* Estilo da imagem da capa do livro */
.book-cover {
    max-width: 100%;
    width: 220px;          /* << ALTERADO AQUI para um tamanho menor */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Book Rating */
.book-rating {
    text-align: center;
    margin-top: 12px;
}

.rating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.book-rating .stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.rating-score {
    font-size: 1rem;
    font-weight: 700;
    color: #80bab7;
    white-space: nowrap;
}

.book-rating .stars i {
    color: #80bab7;
    font-size: 1.1rem;
}

.book-rating .stars .far {
    color: #ccc;
}

.half-star {
    position: relative;
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
}

.half-star .fas {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    overflow: hidden;
    color: #80bab7;
    font-size: 1.1rem;
}

.half-star .far {
    position: absolute;
    left: 0;
    top: 0;
    color: #ccc;
    font-size: 1.1rem;
}

.rating-label {
    font-size: 0.9rem;
    color: #f3f3f5;
    font-weight: 500;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
}

a {
    text-decoration: none;
  }

  a:hover {
  text-decoration: none; /* só sublinha quando passar o mouse */
}

/* Sticky mobile CTA */
.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	display: none;
	padding: 12px 16px;
	background: rgba(7, 34, 59, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 -8px 20px rgba(0,0,0,0.2);
	transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.sticky-cta .cta-button {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	display: block;
	text-align: center;
	background: #efd85d !important;
	color: #07233b !important;
}

.sticky-cta .cta-button:hover {
	background: #e6cf4a !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 207, 74, 0.4);
	scale: 1.02;
}

@media (max-width: 768px) {
	.sticky-cta { display: block; }
	body { padding-bottom: 78px; }
}

/* Pricing */
.pricing-grid {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: stretch;
}

.pricing-card {
	position: relative;
	background: #0a2d4a;
	border-radius: 16px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.2);
	padding: 22px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: 1px solid rgba(239, 216, 93, 0.2);
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	border-color: rgba(239, 216, 93, 0.4);
}

.pricing-card .pricing-header h3 {
    font-size: 1.1rem;
    color: #efd85d;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.price-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.pricing-card .original-price {
	font-size: 1.1rem;
	font-weight: 500;
	color: #b0b0b0;
	margin-bottom: 0;
	line-height: 1.2;
	display: flex;
	align-items: baseline;
	position: relative;
	text-align: center;
}

.pricing-card .original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #efd85d;
    transform: translateY(-50%);
}

.pricing-card .original-price .currency {
	font-size: 1.1rem;
	color: #b0b0b0;
	font-weight: 500;
	line-height: 1;
}

.pricing-card .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #efd85d;
    color: #07233b;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(239, 216, 93, 0.3);
}

.pricing-card .price {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-top: 0;
	display: flex;
	align-items: baseline;
	text-align: center;
}

.pricing-card .currency {
    font-size: 1.1rem;
    margin-right: 4px;
    color: #efd85d;
    font-weight: 600;
    line-height: 1;
}

.pricing-features {
	list-style: none;
	margin: 16px 0 20px;
	padding: 0;
	color: #ffffff;
	font-size: 0.95rem;
	line-height: 1.6;
	text-align: left;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    margin-right: 8px;
}

.pricing-card .cta-button {
	margin-top: 10px;
	width: 100%;
	justify-content: center;
	background: #efd85d !important;
	color: #07233b !important;
	border: none !important;
}

.pricing-card .cta-button.secondary {
	background: transparent !important;
	color: #efd85d !important;
	border: 2px solid #efd85d !important;
}

.pricing-card .cta-button:hover {
	background: #e6cf4a !important;
    color: #07233b !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 207, 74, 0.4);
	scale: 1.02;
}

.pricing-card .cta-button.secondary:hover {
	background: transparent !important;
	color: #efd85d !important;
	border: 2px solid #efd85d !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(239, 216, 93, 0.4);
	scale: 1.02;
}

.pricing-card.featured .cta-button {
	background: #efd85d !important;
	color: #07233b !important;
}

.pricing-card.featured .cta-button:hover {
	background: #e6cf4a !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 207, 74, 0.4);
	scale: 1.02;
}

.pricing-card.featured {
    border: 2px solid #efd85d;
}

.ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #efd85d;
    color: #07233b;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(239, 216, 93, 0.35);
}

.pricing-trust {
	margin-top: 18px;
	display: flex;
	justify-content: center;
}

.secure-badges {
	display: block;
	max-width: 360px;
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
	.secure-badges {
		max-width: 240px;
	}
}

/* CTA Buttons throughout the page */
.hero-cta {
    text-align: center;
    margin-top: 30px;
}

.problem-cta {
    text-align: center;
    margin-top: 40px;
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-cta {
    text-align: center;
    margin-top: 30px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Remove floating elements styles */
.hero-visual {
    display: none;
}

.floating-element {
    display: none;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
}



.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(239, 216, 93, 0.9);
    color: #07233b;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #efd85d;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(239, 216, 93, 0.4);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #efd85d;
    transform: scale(1.2);
}

.dot:hover {
    background: #efd85d;
    transform: scale(1.1);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .carousel-wrapper {
        height: 500px;
    }
    
    .carousel-image {
        height: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h4 {
        font-size: 1.1rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .carousel-wrapper {
        height: 400px;
    }
    
    .carousel-image {
        height: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}