* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Cambio: Fondo blanco cálido */
    background-color: #fffcf9;
    color: #333;
    overflow-x: hidden;
}

.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Cambio: De section-blue a section-orange */
.section-orange {
    /* Cambio: Fondo crema suave */
    background-color: #fff5eb;
    position: relative;
}

.section-white {
    background-color: #ffffff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sección de títulos */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2a2a5a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /* Cambio: Degradado naranja */
    background: linear-gradient(90deg, #ff6600, #ff9500);
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulario de contacto */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 400px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    /* Cambio: Sombra naranja suave */
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    /* Cambio: Sombra naranja más fuerte */
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2a2a5a;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    /* Cambio: Fondo de input cálido muy sutil */
    background-color: #fff9f2;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    /* Cambio: Borde naranja */
    border-color: #ff6600;
    /* Cambio: Brillo focus naranja */
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.1);
    outline: none;
    background-color: white;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    /* Cambio: Degradado naranja botón */
    background: linear-gradient(90deg, #ff6600, #ff9500);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.submit-button:hover {
    /* Cambio: Hover naranja oscuro */
    background: linear-gradient(90deg, #cc5200, #d97f00);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
}

/* Info de contacto */
.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a5a;
    margin-bottom: 1.5rem;
}

.info-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Cambio: Fondo icono degradado crema/naranja */
    background: linear-gradient(135deg, #fff0e6 0%, #ffe4d4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    /* Cambio: Icono naranja */
    color: #ff6600;
    font-size: 1.25rem;
}

.contact-method:hover .contact-icon {
    /* Cambio: Hover fondo naranja vibrante */
    background: linear-gradient(90deg, #ff6600, #ff9500);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.2);
}

.contact-method:hover .contact-icon i {
    color: white;
}

.contact-info-text {
    flex: 1;
}

.contact-info-label {
    font-weight: 600;
    color: #2a2a5a;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #555;
}

/* Alerts - Se mantienen colores semánticos (verde/rojo) pero puedes cambiarlos si gustas */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Decoraciones */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.decoration-circle-1 {
    width: 200px;
    height: 200px;
    /* Cambio: Decoración naranja */
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 149, 0, 0.05) 100%);
    top: 5%;
    left: -100px;
}

.decoration-circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.03) 0%, rgba(255, 149, 0, 0.03) 100%);
    bottom: 10%;
    right: -150px;
}

/* Media queries para diseño responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .contact-info, .contact-form {
        min-width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }
}