/* Global Styles */
:root {
    --color-primary: #2D0C57;
    --color-accent1: #FF6B00;
    --color-accent2: #D0FF00;
    --color-white: #FFFFFF;
    --color-light-gray: #EAEAEA;
    --font-main: 'Montserrat', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./img/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./img/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
    color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-accent1);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-accent1);
    color: var(--color-primary);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(45, 12, 87, 0.9);
    backdrop-filter: blur(10px);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
}

.logo-icon svg {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
}

.header__menu {
    display: flex;
    align-items: center;
}

.header__menu li {
    margin-left: 30px;
}

.header__menu a {
    position: relative;
}

.header__menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
    transition: width 0.3s ease;
}

.header__menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Change burger to X when active */
.header__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 999;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 30px;
}

.mobile-menu__list a {
    font-size: 24px;
    font-weight: 700;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(45, 12, 87, 0.95);
    padding: 20px;
    z-index: 9999;
    transition: all 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-popup__content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-popup__content a {
    color: var(--color-accent2);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(45, 12, 87, 0.8), rgba(45, 12, 87, 0.8)), url('./img/H1ANwU.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    padding-top: 80px;
}

.hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
    color: var(--color-light-gray);
}

.hero__btn {
    animation: fadeIn 1.5s ease;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about__text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about__image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    background-color: rgba(255, 107, 0, 0.05);
    padding: 80px 0;
}

.services__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: rgba(45, 12, 87, 0.8);
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-accent1);
}

.service-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__title {
    text-align: center;
    margin: 20px 20px 15px;
    color: var(--color-accent2);
}

.service-card__description {
    color: var(--color-light-gray);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__link {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
    color: var(--color-primary);
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.advantages__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.advantage-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    background-color: rgba(45, 12, 87, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--color-accent1);
}

.advantage-item__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, rgba(208, 255, 0, 0.1) 100%);
    color: var(--color-accent2);
    font-size: 24px;
}

.advantage-item__title {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(208, 255, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonials__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: rgba(45, 12, 87, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card__content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-card__content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    opacity: 0.2;
    color: var(--color-accent1);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: var(--color-accent1);
    border: 2px solid var(--color-accent2);
    position: relative;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-card__name {
    font-weight: 700;
}

.testimonial-card__position {
    font-size: 14px;
    color: var(--color-light-gray);
}

/* FAQ Section */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item__question {
    padding: 20px;
    background-color: rgba(255, 107, 0, 0.1);
    cursor: pointer;
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    color: var(--color-white);
    text-decoration: none;
}

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(45, 12, 87, 0.8);
}

.faq-item.active .faq-item__answer {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    background-image: linear-gradient(rgba(45, 12, 87, 0.9), rgba(45, 12, 87, 0.9)), url('./img/i9AEHj.jpg');
    background-size: cover;
    background-position: center;
}

.contact__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact__info {
    flex: 1;
    min-width: 300px;
}

.contact__info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact__info-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, rgba(208, 255, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--color-accent2);
}

.contact__form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    background-color: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--color-accent1);
}

.form-select option {
    background-color: var(--color-primary);
    padding: 10px;
}

.form-select:focus {
    border-color: var(--color-accent2);
    box-shadow: 0 0 0 2px rgba(208, 255, 0, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-accent1);
    border-radius: 3px;
    position: relative;
}

.form-check-input:checked {
    background-color: var(--color-accent1);
}

.form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check-label {
    font-size: 14px;
}

.form-check-label a {
    color: var(--color-accent2);
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0 20px;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer__info {
    flex: 2;
    min-width: 200px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.footer__description {
    margin-top: 20px;
    color: var(--color-light-gray);
}

.footer__contact,
.footer__links,
.footer__legal {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a:hover {
    color: var(--color-accent2);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-light-gray);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__burger {
        display: block;
    }
    
    .about__content {
        flex-direction: column;
    }
    
    .about__text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup__content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact__container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer__content {
        flex-direction: column;
    }
    
    .footer__info {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Gracias Page */
.gracias {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.gracias__content {
    max-width: 600px;
    animation: fadeIn 1s ease;
    background-color: rgba(45, 12, 87, 0.8);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
    margin: 0 auto;
    width: 100%;
}

.gracias__icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-accent1) 0%, var(--color-accent2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Policy Pages */
.policy {
    padding: 120px 0 80px;
}

.policy__container {
    max-width: 800px;
    margin: 0 auto;
}

.policy__container h2 {
    margin-top: 40px;
}

.policy__container h3 {
    margin-top: 30px;
}

.policy__container ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy__container ul li {
    margin-bottom: 10px;
}

.policy__container p {
    margin-bottom: 20px;
} 