:root {
    --primary-color: #007bff;
    --primary-color-hover: #0056b3;
    --text-color: #333;
    --background-color: #fff;
    --error-color: red;
    --header-footer-bg: #333;
    --footer-text-color: white;
    --font-family-main: 'Arial', sans-serif;
    --font-family-cursive: 'Pacifico', cursive;
}

body {
    font-family: var(--font-family-main);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
}

header {
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente para mejor contraste */
    position: absolute; /* Flotante sobre el contenido */
    top: 0;
    left: 0;
    width: 100%; /* Abarca todo el ancho */
    z-index: 10; /* Por encima del hero-container */
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Añade un sutil efecto de sombra */
    transition: background-color 0.5s ease, transform 0.3s ease;
}

header:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Cambia el fondo al pasar el mouse */
    transform: scale(1.02); /* Ligeramente más grande */
}

header nav a {
    font-size: 20px; /* Aumenta el tamaño del texto */
    color: #fff; /* Texto blanco para contraste */
    text-transform: uppercase; /* Convierte a mayúsculas */
    font-weight: bold; /* Más grueso */
    margin: 0 20px;
    text-decoration: none;
    letter-spacing: 1px; /* Espaciado entre letras */
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

header nav a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el mouse */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8); /* Añade un brillo dorado */
}

header nav a::before {
    content: '';
    position: absolute;
    bottom: -5px; /* Debajo del texto */
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffd700; /* Línea dorada */
    transition: width 0.4s ease, left 0.4s ease;
}

header nav a:hover::before {
    width: 100%; /* Línea completa al pasar el mouse */
    left: 0;
}

/* Hero Section */
.hero-container {
    background: url(../img/Contacto.jpg) center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-body h1 {
    font-size: 50px;
    color: white;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-body span {
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contacto-info {
    background-color: var(--background-color);
    padding: 40px 0;
    text-align: center;
}

.contacto-info h2 {
    font-size: 28px;
    color: var(--text-color);
}

/* Párrafo Bonito */
.parrafo_bonito {
    font-family: var(--font-family-cursive);
    font-size: 22px;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 1.5px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Contact Form */
.contacto-form {
    padding: 50px 0;
    background-color: transparent !important;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacto-form h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: inline-block;
    font-size: 16px;
    color: #555;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Error Messages */
.error-message {
    color: var(--error-color);
    font-size: 14px;
    position: absolute;
    top: 100%;
    left: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50; /* Fondo oscuro */
    color: #ecf0f1; /* Texto claro */
    padding: 40px 20px;
    margin-top: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffd700; /* Texto en dorado */
}

.footer-section p, .footer-section ul {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el mouse */
}

.footer-section .fas {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #34495e;
    padding-top: 15px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ecf0f1;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #f9f9f9; /* Color blanco */
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el ratón */
    transform: scale(1.1); /* Aumenta ligeramente el tamaño */
}

@media (max-width: 768px) {
    .contacto-form .container {
        width: 100%; /* Asegura que el contenedor no exceda el ancho de la pantalla */
        max-width: 100%; /* Previene desbordamientos */
        padding: 0 15px; /* Añade un espaciado interno para evitar que toque los bordes */
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }

    .form-control {
        width: 100%; /* Ajusta el ancho de los inputs y textarea al 100% */
        max-width: 100%; /* Previene que excedan el ancho del contenedor */
        padding: 10px; /* Mantiene un espacio interno adecuado */
        box-sizing: border-box; /* Incluye padding y bordes en el ancho total */
    }

    textarea.form-control {
        height: 120px; /* Altura del textarea */
        resize: vertical; /* Permite el ajuste vertical */
    }

    button {
        width: 100%; /* Botón del mismo ancho que el contenedor */
        max-width: 100%;
    }
}