/* Base Variables */
:root {
    --primary-color: #7209b7;
    --light-shade: #f3e5f9;
    --dark-shade: #4c0677;
    --text-color: #333;
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --spacing-unit: 8px;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-shade);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 16px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-shade);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 16px;
}

.button--primary {
    background-color: var(--primary-color);
    color: white;
}

.button--primary:hover {
    background-color: var(--dark-shade);
    color: white;
}

.button--secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button--secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    width: 60%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 20%;
}

.section__subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
.mainHeader {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 40px;
    border-radius: 0; /* Override border-radius for logo */
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--dark-shade);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--light-shade);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    text-align: center;
}

.hero__image img {
    border-radius: var(--border-radius);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    object-fit: cover;
}

.hero__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero__text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services__card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.services__card h3 {
    padding: 20px 20px 10px;
    color: var(--dark-shade);
}

.services__card p {
    padding: 0 20px 20px;
    color: #666;
}

/* About Section */
.about {
    background-color: var(--light-shade);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about__content {
    flex: 1;
}

.about__image {
    flex: 1;
}

.about__image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

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

.testimonial__card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial__card::before {
    content: """;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--light-shade);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    z-index: 0;
}

.testimonial__text {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
}

.testimonial__author strong {
    color: var(--dark-shade);
}

.testimonial__author span {
    font-size: 0.9rem;
    color: #666;
}

/* Consultation Section */
.consultation {
    background-color: var(--light-shade);
}

.consultation__wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.consultation__content {
    flex: 1;
}

.consultation__form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-shade);
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Source Sans Pro', sans-serif;
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Schedule Section */
.schedule {
    background-color: #fff;
}

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

.schedule__card {
    display: flex;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule__date {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.schedule__day {
    font-size: 1.8rem;
    font-weight: 700;
}

.schedule__month {
    font-size: 0.9rem;
}

.schedule__details {
    padding: 20px;
    flex: 1;
}

.schedule__details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.schedule__details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.schedule__link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
}

.schedule__link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: #bbb;
    padding: 70px 0 20px;
}

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

.footer__logo {
    margin-bottom: 20px;
    height: 40px;
    border-radius: 0; /* Override border-radius for logo */
}

.footer__info p {
    margin-bottom: 20px;
}

.footer__contact p {
    margin-bottom: 10px;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #bbb;
    transition: var(--transition);
}

.footer__links a:hover {
    color: white;
}

.footer__newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: none;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    color: #bbb;
}

.footer__legal a:hover {
    color: white;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .hero .container,
    .about .container,
    .consultation__wrapper {
        flex-direction: column;
    }

    .hero__image {
        margin-top: 30px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .about__image {
        margin-top: 30px;
    }

    .consultation__form {
        width: 100%;
    }

    .schedule__card {
        flex-direction: column;
    }

    .schedule__date {
        padding: 15px;
        flex-direction: row;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .services__grid,
    .testimonials__grid,
    .schedule__grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

/* Estilos adicionales para about.html - Estos se añadirían al archivo style.css */

/* About Hero Section */
.about-hero {
    background-color: var(--light-shade);
    padding: 140px 0 60px;
    text-align: center;
}

.about-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

/* About Main Section */
.about-main {
    padding: 70px 0;
}

.about-main__wrapper {
    display: flex;
    gap: 50px;
}

.about-main__content {
    flex: 2;
}

.about-main__image {
    flex: 1;
}

.about-main__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-main__section {
    margin-bottom: 40px;
}

.about-main__section p {
    margin-bottom: 16px;
}

.value-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.value-list li {
    background-color: var(--light-shade);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
}

.value-list h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Team Section */
.team {
    background-color: var(--light-shade);
    padding: 70px 0;
}

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

.team__description p {
    margin-bottom: 16px;
}

/* Approach Section */
.approach {
    padding: 70px 0;
}

.approach__steps {
    margin-top: 50px;
}

.approach__step {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    align-items: flex-start;
}

.approach__number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.approach__content {
    flex: 1;
}

.approach__content h3 {
    margin-bottom: 10px;
    color: var(--dark-shade);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    padding: 70px 0;
    color: white;
}

.cta__wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta__content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta .button--primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .button--primary:hover {
    background-color: var(--light-shade);
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .about-main__wrapper {
        flex-direction: column;
    }

    .about-main__image {
        order: -1;
        margin-bottom: 30px;
    }

    .value-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 120px 0 40px;
    }

    .approach__step {
        flex-direction: column;
    }

    .approach__number {
        margin-bottom: 15px;
    }
}

/* Estilos para la página Thank You */
.thankyou {
    padding: 140px 0 80px;
    background-color: var(--light-shade);
    min-height: 70vh;
}

.thankyou__wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.thankyou__icon {
    margin-bottom: 30px;
}

.check-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check-mark {
    width: 30px;
    height: 50px;
    border-right: 5px solid white;
    border-bottom: 5px solid white;
    transform: rotate(45deg);
    margin-top: -5px;
    margin-right: 5px;
}

.thankyou__title {
    color: var(--dark-shade);
    margin-bottom: 20px;
}

.thankyou__text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thankyou__info {
    font-style: italic;
    margin-bottom: 30px;
}

.thankyou__options {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.thankyou__option {
    flex: 1;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: left;
    transition: var(--transition);
    color: var(--text-color);
    text-decoration: none;
}

.thankyou__option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.thankyou__option h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.thankyou__option p {
    margin-bottom: 0;
}

/* Cookie Disclaimer Styles */
.cookie-disclaimer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 15px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
    animation: slideUp 0.5s ease forwards;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-disclaimer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-disclaimer__content {
    flex: 1;
}

.cookie-disclaimer__content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-disclaimer__action {
    flex-shrink: 0;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn:hover {
    background-color: var(--dark-shade);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .thankyou {
        padding: 120px 0 60px;
    }

    .thankyou__wrapper {
        padding: 30px 20px;
    }

    .thankyou__options {
        flex-direction: column;
    }

    .cookie-disclaimer .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-disclaimer__content p {
        margin-bottom: 15px;
    }
}