:root {
    --primary-color: #390099;
    --light-shade: #ebe6f5;
    --dark-shade: #25006b;
    --text-color: #25006b;
    --background-color: #ffffff;
    --border-color: #390099;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark-shade);
}

h1 {
    font-size: 2.44rem;
}

h2 {
    font-size: 1.95rem;
}

h3 {
    font-size: 1.56rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-shade);
}

.btn-primary:hover {
    background-color: var(--dark-shade);
    border-color: var(--dark-shade);
    color: var(--light-shade);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-shade);
}

.btn-tertiary {
    background-color: var(--light-shade);
    color: var(--primary-color);
    border-color: var(--light-shade);
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--light-shade);
    border-color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header & Navigation */
header {
    padding: 20px 0;
    background-color: var(--light-shade);
    border-bottom: 2px solid var(--primary-color);
}

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

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

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

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

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

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

.hamburger:after {
    top: 8px;
}

@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: var(--light-shade);
        transition: all 0.3s ease;
        padding-top: 80px;
    }

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

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

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--dark-shade);
    }

    .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;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: block;
    }

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

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

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

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

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

@media screen and (max-width: 768px) {
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--light-shade);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

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

    .nav-item {
        margin: 15px 0;
    }
}

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

.hero .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--primary-color);
        padding-top: 30px;
        text-align: center;
    }

    .hero-image {
        order: 2;
        margin-top: 30px;
    }
}

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

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

.about-image {
    flex: 1;
    border: 3px solid var(--primary-color);
    overflow: hidden;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content .btn-secondary {
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .about-section .container {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

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

.program-card {
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 20px 20px 10px;
}

.program-card p {
    padding: 0 20px;
}

.program-details {
    padding: 15px 20px;
    margin-top: 15px;
    border-top: 1px solid var(--light-shade);
    display: flex;
    justify-content: space-between;
}

.program-card .btn-tertiary {
    margin: 0 20px 20px;
}

/* Webinar Section */
.webinar-section {
    padding: 80px 0;
}

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

.webinar-content {
    flex: 1;
    background-color: var(--light-shade);
    padding: 40px;
    border-right: 3px solid var(--primary-color);
}

.webinar-image {
    flex: 1;
}

.webinar-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.webinar-content h3 {
    margin-bottom: 20px;
}

.webinar-content p {
    margin-bottom: 10px;
}

.webinar-content .btn-primary {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .webinar-section .container {
        flex-direction: column-reverse;
    }

    .webinar-content {
        border-right: none;
        border-top: 3px solid var(--primary-color);
    }

    .webinar-image {
        margin-bottom: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

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

.testimonial-card {
    background-color: var(--background-color);
    padding: 30px;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.contact-image {
    flex: 1;
    border: 3px solid var(--primary-color);
    overflow: hidden;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-content p {
    margin-bottom: 15px;
}

.contact-info {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-shade);
    border-left: 3px solid var(--primary-color);
}

@media screen and (max-width: 768px) {
    .contact-section .container {
        flex-direction: column;
    }

    .contact-image {
        margin-bottom: 30px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

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

.cta-content {
    flex: 1;
}

.cta-image {
    flex: 1;
    border: 3px solid var(--primary-color);
    overflow: hidden;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 20px;
}

.cta-details {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--background-color);
    border-left: 3px solid var(--primary-color);
}

.cta-content .btn-primary {
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .cta-section .container {
        flex-direction: column-reverse;
    }

    .cta-image {
        margin-bottom: 30px;
    }
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: var(--dark-shade);
    color: var(--light-shade);
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-nav h3,
.footer-contact h3 {
    color: var(--light-shade);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-nav h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: var(--light-shade);
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

    .footer-nav h3:after,
    .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Sección CTA para consultoría estratégica */
.strategy-consultation {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    color: var(--light-shade);
}

.consultation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-content h2 {
    font-size: 2.5rem;
    color: var(--light-shade);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.consultation-content h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--light-shade);
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-shade);
    opacity: 0.5;
    line-height: 1;
}

.feature-text h3 {
    color: var(--light-shade);
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.consultation-cta {
    margin-top: 60px;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--light-shade);
    color: var(--dark-shade);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-shade) 100%);
}

.cta-highlight {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--light-shade);
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-box h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.cta-box .btn-primary {
    padding: 14px 30px;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .strategy-consultation {
        padding: 70px 0;
    }

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

    .feature {
        flex-direction: column;
    }

    .feature-number {
        margin-bottom: 10px;
    }

    .cta-box {
        padding: 30px 20px;
    }
}

/* Sección de Contacto con formulario */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.contact-form-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1.5;
}

.contact-card {
    background-color: var(--primary-color);
    color: var(--light-shade);
    padding: 40px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(57, 0, 153, 0.2);
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.contact-card:after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.contact-card h3 {
    color: var(--light-shade);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-value {
    display: block;
    font-weight: 700;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--dark-shade);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(57, 0, 153, 0.1);
}

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

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-privacy input {
    width: auto;
    margin-top: 5px;
}

.form-privacy label {
    font-weight: 400;
    font-size: 0.9rem;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .contact-form-wrapper {
        flex-direction: column;
    }

    .contact-card {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 70px 0;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Animación para el botón principal */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover:after {
    width: 300px;
    height: 300px;
}

/* Estilos para la página About */

/* Hero de About */
.about-hero {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--dark-shade);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-shade);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-shade);
}

.about-hero .subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Sección Historia */
.about-story {
    padding: 80px 0;
}

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

.about-story .about-image {
    flex: 1;
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-story .about-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(50%, 50%);
}

.about-story .about-content {
    flex: 1;
}

.about-story h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-story h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-story p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .about-story .container {
        flex-direction: column;
    }

    .about-story .about-image {
        margin-bottom: 30px;
    }
}

/* Sección Misión/Visión/Valores */
.mission-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

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

.mission-card {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-card:nth-child(1) {
    border-top: 3px solid var(--primary-color);
}

.mission-card:nth-child(2) {
    border-bottom: 3px solid var(--primary-color);
}

.mission-card:nth-child(3) {
    border-left: 3px solid var(--primary-color);
}

.mission-card h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-shade);
    position: relative;
    padding-left: 25px;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Sección Equipo */
.team-section {
    padding: 80px 0;
}

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

.team-member {
    background-color: var(--light-shade);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-info {
    padding: 30px;
    position: relative;
}

.member-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-shade) 100%);
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-shade);
}

.member-bio {
    font-size: 0.95rem;
}

/* Sección Metodología */
.methodology-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.methodology-steps {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.methodology-steps:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 3px;
    background-color: var(--primary-color);
}

.method-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.method-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    z-index: 2;
}

.step-content {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Sección */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    color: var(--light-shade);
    text-align: center;
}

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

.about-cta h2 {
    color: var(--light-shade);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-cta .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-color: var(--light-shade);
    background-color: transparent;
}

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

/* Estilos para Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background-color: var(--light-shade);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-box {
    background-color: var(--background-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-shade) 100%);
}

.check-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.check-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(57, 0, 153, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.check-mark {
    position: absolute;
    top: 30px;
    left: 28px;
    width: 40px;
    height: 20px;
    border-bottom: 4px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    transform: rotate(-45deg);
    animation: check 0.8s forwards;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(57, 0, 153, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(57, 0, 153, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(57, 0, 153, 0);
    }
}

@keyframes check {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    20% {
        width: 0;
        height: 20px;
        opacity: 1;
    }

    40% {
        width: 40px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 40px;
        height: 20px;
        opacity: 1;
    }
}

.thank-you-box h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: 8px;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.steps-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
}

.thank-you-cta {
    margin-top: 40px;
}

.thank-you-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.thank-you-cta .btn-primary {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.1rem;
}

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

    .thank-you-box {
        padding: 40px 20px;
    }

    .thank-you-box h1 {
        font-size: 1.8rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .next-steps {
        padding: 20px;
    }

    .step-text {
        font-size: 1rem;
    }
}

/* Estilos para Cookie Disclaimer */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background-color: var(--dark-shade);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(200%);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-shade) 100%);
}

.cookie-container {
    padding: 25px;
}

.cookie-content {
    margin-bottom: 20px;
}

.cookie-content p {
    color: var(--light-shade);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-cookie {
    background-color: var(--light-shade);
    color: var(--dark-shade);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media screen and (max-width: 500px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .cookie-container {
        padding: 20px;
    }
}