/* Base Styles and Variables */
:root {
    --primary-color: #f57c00;
    --primary-light: #ffe0b2;
    --secondary-color: #fbc02d;
    --background-color: #fffaf0;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --border-radius: 0.75rem;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    color: var(--text-dark);
    background-color: var(--background-color);
    background-image: 
        linear-gradient(rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.9)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fbc02d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 0.8em 2em;
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: #e65100;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 81, 0, 0.2);
}

.primary-btn {
    background: var(--primary-color);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-content .btn {
    padding: 0.5em 1.5em;
}

/* Navigation and Header */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--primary-light) 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo img {
    height: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5em 1em;
    border-radius: var(--border-radius);
}

.nav-cta:hover {
    background: #e65100;
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-card {
    flex: 1;
    position: relative;
}

.card-visual {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transform: rotate(3deg);
    border: 1px dashed var(--secondary-color);
    padding: 1rem;
}

.card-image {
    width: 100%;
    display: block;
    border-radius: calc(var(--border-radius) - 5px);
}

.card-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.card-benefits span {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.3em 1em;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 5%;
    background: var(--white);
}

.benefits-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-tab {
    margin-bottom: 1.5rem;
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.benefit-tab h3 {
    padding: 1rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
}

.benefit-tab h3::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
}

.benefit-tab.active h3::after {
    content: '-';
}

.tab-content {
    display: flex;
    flex-direction: row;
    padding: 1.5rem;
    display: none;
}

.benefit-tab.active .tab-content {
    display: flex;
}

.benefit-description {
    flex: 1;
    padding-right: 2rem;
}

.benefit-list {
    margin-top: 1rem;
}

.benefit-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.benefit-image {
    flex: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 5%;
    background: linear-gradient(to right, var(--background-color), var(--white));
}

.journey-path {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.journey-path::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 100px);
    background: var(--primary-light);
    z-index: 0;
}

.journey-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    padding-left: 2rem;
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content img {
    margin-top: 1rem;
    box-shadow: var(--box-shadow);
}

/* Partners Section */
.partners-section {
    padding: 5rem 5%;
    background: var(--white);
}

.partners-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5em 1.5em;
    background: var(--background-color);
    border: 1px solid var(--primary-light);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover, .category-btn.active {
    background: var(--primary-light);
    color: var(--primary-color);
}

.partners-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

.partner-card {
    min-width: 280px;
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1rem;
    position: relative;
    background: var(--white);
    scroll-snap-align: start;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3em 0.8em;
    border-radius: 100px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.partner-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.partner-card h3 {
    margin-bottom: 0.3rem;
}

.partner-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.partner-location {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 5%;
    background: linear-gradient(to left, var(--background-color), var(--white));
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.testimonial-content {
    background: var(--white);
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    box-shadow: var(--box-shadow);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.5;
}

.quote {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

/* Registration Section */
.register-section {
    padding: 5rem 5%;
    background: var(--white);
}

.registration-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-info {
    flex: 1;
}

.registration-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.registration-benefits {
    margin-bottom: 2rem;
}

.registration-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    margin-right: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.card-types {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card-option {
    flex: 1;
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
}

.card-option.premium {
    background: var(--primary-light);
    transform: scale(1.05);
}

.recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3em 1em;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-option h4 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-option ul {
    margin-left: 1.5rem;
    list-style: disc;
}

.card-option li {
    margin-bottom: 0.5rem;
}

.registration-form {
    flex: 1;
}

form {
    background: var(--white);
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    background: var(--white);
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-options, .checkbox-label {
    display: flex;
    gap: 1.5rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input, .checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1em;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    margin-top: 1rem;
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #aaa;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    margin-bottom: 1rem;
    color: #aaa;
}

.icon-location, .icon-phone, .icon-email {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .registration-container {
        flex-direction: column;
    }
    
    .card-types {
        justify-content: center;
    }
    
    .card-option {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 6rem 2rem 2rem;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 101;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tab-content {
        flex-direction: column;
    }
    
    .benefit-description {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .journey-path::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-tab h3 {
        font-size: 1.1rem;
    }
    
    .card-types {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .card-option {
        width: 100%;
    }
    
    .card-option.premium {
        transform: none;
    }
    
    .radio-options {
        flex-direction: column;
        gap: 0.8rem;
    }
} 