/* Servicios Page Specific Styles */
.servicios-hero,
.servicios-cta {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.servicios-hero {
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    color: #010101;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.servicios-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.servicios-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.servicio-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.servicio-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.servicio-card h2 {
    font-size: 1.75rem;
    color: #D61935;
    margin-bottom: 15px;
    font-weight: 600;
}

.servicio-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.servicio-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.servicio-features li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servicio-features li:before {
    content: "✓";
    color: #D61935;
    font-weight: bold;
    font-size: 1.2rem;
}

.servicio-button {
    display: inline-block;
    padding: 12px 30px;
    background: #D61935;
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.servicio-button:hover {
    background: #B01429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 25, 53, 0.3);
}

.beneficios-section {
    background: #FFEAE6;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.beneficios-section h2 {
    font-size: 2.25rem;
    color: #010101;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
}

.beneficio-item h3 {
    font-size: 1.25rem;
    color: #D61935;
    margin: 15px 0 10px;
    font-weight: 600;
}

.beneficio-item p {
    color: #555;
    line-height: 1.6;
}

.servicios-cta {
    background: linear-gradient(135deg, #D61935 0%, #B01429 100%);
    color: white;
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.servicios-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.servicios-cta p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #D61935;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #FFEAE6;
}

@media (max-width: 768px) {

    .servicios-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

/* Contacto Page Specific Styles */
.contacto-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    color: #010101;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.contacto-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.contacto-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.contacto-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contacto-intro h2 {
    font-size: 2rem;
    color: #010101;
    margin-bottom: 15px;
    font-weight: 600;
}

.contacto-intro p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #FFEAE6;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    font-size: 1.25rem;
    color: #D61935;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

.info-card a {
    color: #D61935;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.formulario-section {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.formulario-section h2 {
    font-size: 2rem;
    color: #010101;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.formulario-section p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.125rem;
}

/* Form Styles */
.contact-form p {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #FFEAE6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #D61935;
    outline: none;
}

.contact-form button[type="submit"] {
    background: #D61935;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background: #B01429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 25, 53, 0.3);
}

@media (max-width: 768px) {
    .contacto-info {
        grid-template-columns: 1fr;
    }
}

/* Precios Page Specific Styles */
.pricing-hero {
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #010101;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #D61935;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(214, 25, 53, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D61935;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pricing-card h2 {
    font-size: 1.75rem;
    color: #010101;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:before {
    content: "✓";
    color: #D61935;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-price {
    font-size: 2.5rem;
    color: #D61935;
    font-weight: 700;
    margin: 30px 0 10px;
}

.pricing-card.featured .pricing-price {
    font-size: 3rem;
}

.pricing-period {
    color: #999;
    font-size: 1rem;
    display: block;
    margin-bottom: 25px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: #D61935;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: auto;
}

.pricing-button:hover {
    background: #B01429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 25, 53, 0.3);
}

.pricing-button.secondary {
    background: transparent;
    color: #D61935;
    border: 2px solid #D61935;
}

.pricing-button.secondary:hover {
    background: #D61935;
    color: white;
}

.info-section {
    background: #FFEAE6;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
}

.info-section h3 {
    font-size: 1.75rem;
    color: #010101;
    margin-bottom: 20px;
}

.info-section p {
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-card.featured .pricing-price {
        font-size: 2.5rem;
    }
}

/* Recursos Page Specific Styles */
.recursos-hero {
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    color: #010101;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.recursos-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.recursos-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.recursos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.recurso-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.recurso-header {
    background: linear-gradient(135deg, #D61935 0%, #B01429 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.recurso-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.recurso-header h2 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 600;
}

.recurso-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recurso-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.recurso-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.recurso-features li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recurso-features li:before {
    content: "▸";
    color: #D61935;
    font-weight: bold;
    font-size: 1.2rem;
}

.recurso-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: #D61935;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-top: auto;
}

.recurso-button:hover {
    background: #B01429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 25, 53, 0.3);
}

.info-box {
    background: #FFEAE6;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #D61935;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
    }
}

/* Sobre Page Specific Styles */
.sobre-hero {
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    color: #010101;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.sobre-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.sobre-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #333;
}

.sobre-hero .intro {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h2 {
    font-size: 1.75rem;
    color: #D61935;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.projects-section {
    background: #FFEAE6;
    padding: 60px 40px;
    margin-bottom: 60px;
}

.projects-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-section h2 {
    font-size: 2.25rem;
    color: #010101;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.projects-section .subtitle {
    text-align: center;
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.project-card h3 {
    font-size: 1.5rem;
    color: #D61935;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #D61935 0%, #B01429 100%);
    color: white;
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .sobre-hero {
        padding: 60px 20px;
    }

    .mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-section {
        padding: 40px 20px;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    background: linear-gradient(135deg, #FFEAE6 0%, #FFD5CE 100%);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-color: #eee;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h2 {
    font-size: 1.75rem;
    color: #010101;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-card h2 a:hover {
    color: #D61935;
}

.blog-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: #D61935;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.widget {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFEAE6;
    color: #010101;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 5px 0;
}

.widget ul li a:hover {
    color: #D61935;
    padding-left: 5px;
}

@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        order: -1;
        /* Optional: put sidebar on top or bottom */
    }
}

/* Inscription Page Styles */
.inscripcion-header-bar {
    background-color: #FFEAE6;
    /* Light pink from screenshot */
    padding: 30px 20px;
    text-align: left;
    margin-bottom: 40px;
}

.inscripcion-header-bar h1 {
    font-size: 2rem;
    font-weight: 600;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto Flex', sans-serif;
    /* Ensuring font match */
}

.inscripcion-container {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.inscripcion-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: #333;
}

.radio-option input,
.checkbox-option input {
    margin-top: 4px;
}

.payment-info {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.inclusions-list {
    margin: 0;
    padding-left: 20px;
}

.inclusions-list li {
    margin-bottom: 8px;
    color: #333;
}

.submit-btn {
    background-color: #efefef;
    color: #333;
    border: 1px solid #ccc;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #e0e0e0;
}