:root {
            --primary: #194e5e;
            --primary-dark: #103844;
            --primary-action: #25838f;
            --secondary: #429b96;
            --accent: #9ad4c5;
            --mint: #a3ebd0;
            --whatsapp: #16a34a;
            --text-dark: #0f2930;
            --text-light: #f5f7f8;
            --background: #ffffff;
            --gradient: linear-gradient(135deg, #1d5e70 0%, #2b8a96 50%, #4db0a7 100%);
        }
body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
#header {
            padding: 10px 0 !important;
            margin: 0 !important;
            background: var(--gradient);
            box-shadow: none;
            transition: all 0.3s ease;
        }
.btn-primary {
            background-color: var(--primary-action) !important;
            color: #ffffff !important;
            border: none !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
.btn-primary:hover {
            background-color: #1f6e73 !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(43, 138, 150, 0.4);
        }
.navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5) !important;
        }
.hero-section {
            padding-top: 120px;
            min-height: 90vh;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
            color: var(--text-light);
        }
.hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
.hero-content {
            padding: 80px 0;
            position: relative;
            z-index: 2;
        }
.hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
.hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
.hero-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary-action);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(43, 138, 150, 0.4);
            transition: all 0.3s ease;
        }
.hero-button-secondary {
            display: inline-block;
            padding: 14px 24px;
            border: 1px solid rgba(255, 255, 255, 0.65);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            margin-left: 0;
            transition: all 0.3s ease;
        }
.hero-button-secondary:hover {
            background: rgba(255, 255, 255, 0.14);
            color: var(--text-light);
        }
.hero-rating {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin-top: 24px;
            padding: 16px 22px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 18px;
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
        }
.hero-rating img {
            height: 90px;
            width: auto;
            max-width: 290px;
            object-fit: contain;
        }
.hero-rating-stars {
            display: flex;
            align-items: center;
            gap: 8px;
        }
.hero-rating-stars .stars {
            color: #f59e0b;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
.hero-rating-stars .rating-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #194e5e;
        }
.decision-section {
            padding: 80px 0;
            background: #f8fafc;
        }
.decision-card {
            height: 100%;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
.decision-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
        }
.decision-card h3 {
            color: var(--primary);
            font-size: 1.2rem;
        }
.decision-card .icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 18px;
            color: #fff;
            background: var(--primary-action);
        }
.program-quick-card {
            border-left: 4px solid var(--secondary);
            background: var(--surface-mint);
            border-radius: 12px;
            padding: 18px 20px;
            height: 100%;
        }
.program-quick-card strong {
            color: var(--primary);
        }
.faq-section {
            padding: 80px 0;
            background: #fff;
        }
.faq-accordion .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 14px !important;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
        }
.faq-accordion .accordion-button {
            font-weight: 600;
            color: var(--primary);
            background: #fff;
            padding: 20px 24px;
        }
.faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: #f8fafc;
            box-shadow: none;
        }
.faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
        }
.faq-accordion .accordion-button::after {
            filter: hue-rotate(190deg) saturate(3);
        }
.faq-accordion .accordion-body {
            padding: 4px 24px 22px;
            color: #475569;
        }
.reviews-section {
            padding: 80px 0;
            background: #fff;
        }
.reviews-summary {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            background: #fffbeb;
            border: 1px solid #fde68a;
            border-radius: 14px;
        }
.reviews-summary-score {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
        }
.review-stars {
            color: #d97706;
            letter-spacing: 2px;
            white-space: nowrap;
        }
.review-card {
            height: 100%;
            padding: 26px;
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            background: #f8fafc;
        }
.reviews-carousel {
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            padding: 4px 2px 18px;
        }
.reviews-carousel::-webkit-scrollbar {
            display: none;
        }
.reviews-track {
            display: flex;
            width: max-content;
            animation: review-marquee 55s linear infinite;
        }
.reviews-set {
            display: flex;
            gap: 20px;
            padding-right: 20px;
        }
.review-slide {
            flex: 0 0 min(320px, 86vw);
        }
@keyframes review-marquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
@media (prefers-reduced-motion: reduce) {
            .reviews-track {
                animation: none;
            }
        }
.review-card blockquote {
            color: var(--text-dark);
            line-height: 1.7;
            margin: 16px 0 22px;
        }
.review-author {
            color: var(--primary);
            font-weight: 600;
        }
.review-role {
            color: #64748b;
            font-size: 0.9rem;
        }
.whatsapp-cta {
            background: var(--whatsapp);
            color: #fff;
            border-radius: 50px;
            padding: 12px 22px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s ease, transform 0.2s ease;
        }
.whatsapp-cta:hover {
            background: #15803d;
            color: #fff;
            transform: translateY(-2px);
        }
.hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(43, 138, 150, 0.5);
            color: #ffffff;
            background: #1f6e73;
        }
.carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }
.carousel-control-prev {
            left: 10px;
        }
.carousel-control-next {
            right: 10px;
        }
.carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(0, 0, 0, 0.7);
        }
.carousel .hero-image {
            height: 400px;
            width: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
.hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }
.chatbot-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: var(--primary-action);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
.chatbot-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
.chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            height: 500px;
            background: var(--background);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
        }
.chatbot-header {
            background: var(--gradient);
            color: var(--text-light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.close-button {
            background: none;
            border: none;
            color: var(--text-light);
            padding: 5px;
            transition: all 0.3s ease;
        }
.close-button:hover {
            transform: scale(1.1);
        }
.chatbot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8f9fa;
        }
.message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 12px 15px;
            border-radius: 15px;
            clear: both;
        }
.message.bot {
            background: #f0f2f5;
            color: var(--text-dark);
            float: left;
            border-bottom-left-radius: 5px;
        }
.message.user {
            background: var(--primary);
            color: var(--text-light);
            float: right;
            border-bottom-right-radius: 5px;
        }
.chatbot-input {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            background: var(--background);
        }
.chatbot-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            margin-right: 10px;
            outline: none;
            transition: all 0.3s ease;
        }
.chatbot-input input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
        }
.chatbot-input button {
            background: var(--primary);
            color: var(--text-light);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
.chatbot-input button:hover {
            transform: scale(1.1);
        }
.typing-animation {
            display: flex;
            gap: 5px;
        }
.typing-animation span {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typing 1s infinite ease-in-out;
        }
.typing-animation span:nth-child(1) {
            animation-delay: 0.2s;
        }
.typing-animation span:nth-child(2) {
            animation-delay: 0.4s;
        }
.typing-animation span:nth-child(3) {
            animation-delay: 0.6s;
        }
@keyframes typing {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }
.footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 0;
        }
@media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

            .hero-button-secondary {
                margin: 12px 0 0;
            }

            .footer-company {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }
