/*
Theme Name: Hosting Pro The chiguire
Description: Tema profesional para empresas de hosting
Author: Jose Segovia
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #222b45;
    background-color: #f5f6fa;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #3f51b5 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(63,81,181,0.07);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo-area {
    display: flex;
    align-items: center;
    min-width: 120px;
}
.logo-area .custom-logo-link img,
.logo-area img.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    background: transparent;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* Menú principal */
/* 
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
}
.main-nav ul li {
    position: relative;
}
.main-nav a {
    color: #3f51b5;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
    display: block;
}
.main-nav a:hover,
.main-nav .has-submenu:hover > a {
    background: #e8eaf6;
}
.has-submenu > .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(63,81,181,0.07);
    border-radius: 8px;
    min-width: 200px;
    z-index: 100;
    padding: 0.5rem 0;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    display: block;
}
.submenu li {
    width: 100%;
}
.submenu a {
    color: #3f51b5;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    background: none;
}
.submenu a:hover {
    background: #f5f6fa;
}
.cta-button {
    background: #3f51b5;
    color: #fff !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    margin-left: 1rem;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #303f9f;
}
@media (max-width: 900px) {
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav ul li {
        width: 100%;
    }
    .has-submenu > .submenu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
    }
}
 fin principal */

/* MEJORA DISEÑO MENU PRINCIPAL */

/* Reset básico para enlaces en menú */
.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    color: #3f51b5;
}

/* Botones principales estilo CTA */
.main-nav a.cta-button {
    background: #3f51b5;
    color: #fff !important;
    border-color: #3f51b5;
    box-shadow: 0 6px 15px rgba(63,81,181,0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 26px;
}
.main-nav a.cta-button:hover,
.main-nav a.cta-button:focus {
    background: #303f9f;
    border-color: #303f9f;
    box-shadow: 0 8px 28px rgba(48,63,159,0.6);
    color: #fff !important;
    outline: none;
}

/* Menú principal (ul) */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
}

/* Items del menú */
.main-nav ul li {
    position: relative;
}

/* Submenús */
/* Fondo leve gris-azulado y sombra a los submenús */
.main-nav ul ul.submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #eef2fa;           /* ← color leve azulado, no puro blanco */
    box-shadow: 0 10px 30px rgba(63,81,181,0.13);
    border-radius: 12px;
    min-width: 200px;
    display: none;
    flex-direction: column;
    padding: 12px 0;
    z-index: 9999;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(15px);
    border: 1.5px solid #3f51b512; /* linea leve */
}

/* Mostrar submenu al hover/tocar */
.main-nav ul li.has-submenu:hover > ul.submenu,
.main-nav ul li.has-submenu:focus-within > ul.submenu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Items de submenu */
.main-nav ul ul.submenu li {
    width: 100%;
}

/* Links de submenu */
.main-nav ul ul.submenu li a {
    padding: 10px 24px;
    color: #254297;
    background: transparent;
    border-radius: 0 20px 20px 0;
    font-weight: 500;
    font-size: 1.01rem;
    transition: background 0.3s, color 0.3s;
}


/* Hover submenu links */
.main-nav ul ul.submenu li a:hover,
.main-nav ul ul.submenu li a:focus {
    background: #3f51b5;
    color: #fff;
    outline: none;
}

/* Flecha desplegable para items con submenu */
.main-nav ul li.has-submenu > a.cta-button::after {
    content: " ▼";
    font-size: 0.6rem;
    margin-left: 6px;
    color: #dedede;
    transition: color 0.3s ease;
}
.main-nav ul li.has-submenu:hover > a.cta-button::after,
.main-nav ul li.has-submenu:focus-within > a.cta-button::after {
    color: #fff;
}

/* Último item especial "Área de Cliente" */
.main-nav > ul > li:last-child > a.cta-button {
    background: #ff6b6b;
    color: #fff !important;
    border-color: #ff6b6b;
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.4);
    padding: 12px 28px;
}
.main-nav > ul > li:last-child > a.cta-button:hover,
.main-nav > ul > li:last-child > a.cta-button:focus {
    background: #e65555;
    border-color: #e65555;
    box-shadow: 0 8px 30px rgba(230, 85, 85, 0.6);
    outline: none;
}

/* Responsive (menú móvil hamburguesa) */
@media (max-width: 900px) {
    /* Mostrar el menú como columna */
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background: white;
        position: fixed;
        top: 65px;
        left: -100%;
        width: 80vw;
        height: 100vh;
        padding-top: 1.5rem;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1500;
        overflow-y: auto;
    }
    /* Mostrar menú cuando se agregue clase .open */
    .main-nav.open ul {
        left: 0;
    }
    /* Items en menú vertical */
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .main-nav ul li a.cta-button {
        border-radius: 0;
        padding: 15px 25px;
        font-size: 1.1rem;
        color: #3f51b5 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-transform: none;
    }
    .main-nav ul li a.cta-button:hover,
    .main-nav ul li a.cta-button:focus {
        background: #e8eaf6 !important;
        color: #303f9f !important;
    }
    /* Submenús en móvil */
   /* .main-nav ul ul.submenu {
        position: static;
        display: none !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    } */
@media (max-width: 900px) {
    .main-nav ul ul.submenu {
        background: #e8eaf6;
        box-shadow: none;
        border-radius: 8px;
        border: none;
        padding: 0;
    }
    .main-nav ul ul.submenu li a {
        padding: 12px 25px;
    }
}

    /* Mostrar submenu cuando el padre tenga clase open */
    .main-nav ul li.has-submenu.open > ul.submenu {
        display: block !important;
        max-height: 500px;
        padding-left: 20px;
    }
    .main-nav ul ul.submenu li a {
        padding: 12px 25px;
        color: #3f51b5;
    }
    /* Flechas en móvil para submenús */
    .main-nav ul li.has-submenu > a.cta-button::after {
        content: "▶";
        float: right;
        transition: transform 0.3s ease;
        margin-top: 4px;
        font-size: 0.8rem;
        color: #3f51b5;
    }
    .main-nav ul li.has-submenu.open > a.cta-button::after {
        transform: rotate(90deg);
        color: #303f9f;
    }
}

/* Fin  MEJORA DISEÑO MENU PRINCIPAL */

/* Hero Section */
.hero-section {
    background: #3f51b5;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botones */
.cta-button, .submit-btn, .domain-btn {
    background: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s;
}
.cta-button:hover, .submit-btn:hover, .domain-btn:hover {
    background: #303f9f;
    color: #fff;
    box-shadow: 0 8px 24px rgba(63,81,181,0.15);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3f51b5;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-card, .feature-item, .vps-card, .form-fields, .hosting-card {
    background: #f5f6fa;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(63,81,181,0.07);
    color: #222b45;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.pricing-card:hover, .hosting-card:hover, .vps-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.pricing-card.featured, .hosting-card.featured, .vps-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}
.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}
.plan-period {
    color: #666;
    margin-bottom: 2rem;
}
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}
.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
.plan-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-item h3 {
    margin-bottom: 1rem;
    color: #3f51b5;
}

/* Formularios */
.contact-form,
.quote-form,
.domain-form,
.form-fields {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.form-row, .form-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #3f51b5;
    background: #f5f6fa;
    color: #222b45;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #303f9f;
    background: #fff;
    outline: none;
}
.submit-btn {
    background: #3f51b5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: opacity 0.3s;
}
.submit-btn:hover {
    opacity: 0.9;
}

/* VPS y Hosting Compartido */
.vps-plans-section, .shared-hosting-section {
    padding: 80px 0;
    background: #fff;
}
.vps-grid, .hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.vps-card, .hosting-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63,81,181,0.07);
    transition: transform 0.3s;
    border: 2px solid transparent;
}
.vps-card:hover, .hosting-card:hover {
    transform: translateY(-5px);
}
.vps-card.featured, .hosting-card.featured {
    border-color: #667eea;
    transform: scale(1.02);
}
.plan-select {
    display: block;
    margin-top: 1.5rem;
    position: relative;
    cursor: pointer;
}
.plan-select input[type="radio"] {
    opacity: 0;
    position: absolute;
}
.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3f51b5;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.plan-select input:checked ~ .checkmark {
    background: #3f51b5;
}

/* Footer */
.site-footer {
    background: #222b45;
    color: #fff;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-bottom: 1rem;
    color: #3f51b5;
}
.footer-section ul {
    list-style: none;
}
.footer-section a {
    color: #3f51b5;
    opacity: 0.85;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: white;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3f51b5;
    color: #fff;
}

/* Mensajes de éxito */
.success-message {
    background: #e8eaf6;
    color:  #155724;
    border-left: 5px solid #3f51b5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .form-row, .form-fields .form-row {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured, .vps-card.featured, .hosting-card.featured {
        transform: none;
    }
    .logo-area {
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* === FORMULARIO DE SERVIDORES DEDICADOS === */
/* CSS COMPLETO PARA FORMULARIO SERVIDORES DEDICADOS */
/* Pega este bloque al final de tu style.css */

.dedicated-server-section {
    padding: 80px 0;
    background: #fff;
}
.dedicated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.dedicated-card {
    background: #f5f6fa;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(63,81,181,0.07);
    color: #222b45;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.dedicated-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(63,81,181,0.11);
}
.dedicated-card.featured {
    border-color: #3f51b5;
    transform: scale(1.04);
}
.dedicated-plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3f51b5;
}
.dedicated-plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #303f9f;
    margin-bottom: 0.5rem;
}
.dedicated-plan-period {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.dedicated-plan-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}
.dedicated-plan-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}
.dedicated-plan-features li:last-child {
    border-bottom: none;
}
.plan-select {
    display: block;
    margin-top: 1.2rem;
    position: relative;
    cursor: pointer;
    font-size: 1.05rem;
}
.plan-select input[type="radio"] {
    opacity: 0;
    position: absolute;
}
.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3f51b5;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    background: #fff;
}
.plan-select input:checked ~ .checkmark {
    background: #3f51b5;
}
.dedicated-form-fields {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    color: #222b45;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(63,81,181,0.09);
}
.dedicated-form-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}
.dedicated-form-fields .form-group {
    margin-bottom: 16px;
}
.dedicated-form-fields .form-group input,
.dedicated-form-fields .form-group textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid #3f51b5;
    border-radius: 5px;
    background: #f5f6fa;
    color: #222b45;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.dedicated-form-fields .form-group input:focus,
.dedicated-form-fields .form-group textarea:focus {
    border-color: #303f9f;
    background: #fff;
    outline: none;
}
.dedicated-form-fields .submit-btn {
    background: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 36px;
    font-weight: bold;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: 12px;
}
.dedicated-form-fields .submit-btn:hover {
    background: #303f9f;
    box-shadow: 0 8px 24px rgba(63,81,181,0.14);
}
.success-message, .error-message {
    background: #e8eaf6;
    color: #155724;
    border-left: 5px solid #3f51b5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}
.error-message {
    background: #ffd6d6;
    color: #b71c1c;
    border-left: 5px solid #b71c1c;
}
@media (max-width: 900px) {
    .dedicated-grid {
        grid-template-columns: 1fr;
    }
    .dedicated-form-fields .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* === Fin FORMULARIO DE SERVIDORES DEDICADOS === */
/* Estilos para el formulario de búsqueda de dominios */

.domain-form input[type="text"] {
    border: 2px solid #3f51b5;
    border-radius: 8px;
    padding: 15px;
    font-size: 1.1rem;
    color: #222b45;
    transition: border-color 0.3s;
}

.domain-form input[type="text"]:focus {
    border-color: #303f9f;
    outline: none;
    background: #fff;
}

.domain-form .domain-btn {
    background: #3f51b5;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.domain-form .domain-btn:hover {
    background: #303f9f;
}

#domain-search-result {
    font-weight: 600;
    margin-top: 20px;
}
/* FIN Estilos para el formulario de búsqueda de dominios */

/* Estilos generales para la sección de Política de Privacidad, consistente con el tema */

.privacy-policy-section {
    background: #fff;
    color: #222b45;
    font-size: 1rem;
    line-height: 1.6;
}
.privacy-policy-section h1.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.privacy-policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3f51b5;
}
.privacy-policy-section p,
.privacy-policy-section ul {
    margin-bottom: 1.5rem;
}
.privacy-policy-section ul {
    margin-left: 2rem;
    list-style-type: disc;
}
.privacy-policy-section a {
    color: #3f51b5;
    text-decoration: underline;
}
.privacy-policy-section a:hover {
    color: #303f9f;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-section .container {
        padding: 0 15px;
    }
    .privacy-policy-section h1.section-title {
        font-size: 2.2rem;
    }
    .privacy-policy-section h2 {
        font-size: 1.4rem;
    }
    .privacy-policy-section {
        font-size: 0.95rem;
    }
}
/*Inicio secccion terminos y condiciones */
/* ==== CSS PARA FORMULARIO DE TÉRMINOS Y CONDICIONES ==== */

.terms-conditions-section {
    padding: 60px 0;
    background: #fff;
}

.terms-content {
    background: #f5f6fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(63,81,181,0.07);
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 30px;
    color: #222b45;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(63,81,181,0.07);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="checkbox"] + label,
.form-group a {
    color: #222b45;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #3f51b5;
    border-radius: 5px;
    background: #f5f6fa;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    border-color: #303f9f;
    background: #fff;
    outline: none;
}

.form-group input[type="checkbox"] {
    margin-right: 12px;
    vertical-align: middle;
    cursor: pointer;
    accent-color: #3f51b5;
}

.form-group input[type="checkbox"] + label {
    cursor: pointer;
}

.form-group a {
    color: #3f51b5;
    text-decoration: underline;
}

.form-group a:hover {
    color: #303f9f;
    text-decoration: none;
}

.submit-btn {
    background: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background: #303f9f;
    box-shadow: 0 8px 24px rgba(63,81,181,0.15);
}

.success-message {
    background: #e8f5e9;
    color: #155724;
    border-left: 5px solid #3f51b5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

.error-message {
    background: #ffe6e6;
    color: #b71c1c;
    border-left: 5px solid #b71c1c;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-form {
        padding: 20px;
    }
}
/*Fin secccion terminos y condiciones */

/* Seccion de terminos y condiiciones */
/* ==== CSS PARA LA SECCIÓN DE TÉRMINOS Y CONDICIONES ==== */

.terms-conditions-section {
    padding: 60px 0;
    background: #fff;
    color: #222b45;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-conditions-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.terms-conditions-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3f51b5;
}

.terms-conditions-section p,
.terms-conditions-section ul {
    margin-bottom: 1.5rem;
}

.terms-conditions-section ul {
    margin-left: 2rem;
    list-style-type: disc;
}

.terms-conditions-section a {
    color: #3f51b5;
    text-decoration: underline;
}

.terms-conditions-section a:hover {
    color: #303f9f;
    text-decoration: none;
}

/* Responsive */

@media (max-width: 768px) {
    .terms-conditions-section .container {
        padding: 0 15px;
    }
    .terms-conditions-section .section-title {
        font-size: 2.2rem;
    }
    .terms-conditions-section h2 {
        font-size: 1.4rem;
    }
    .terms-conditions-section {
        font-size: 0.95rem;
    }
}
/* Fin Seccion de terminos y condiiciones */