/* ===================================
   Variables y Reset
   =================================== */
:root {
    --primary-color: #0A6291;
    --primary-dark: #084d73;
    --primary-light: #0d7ab8;
    --secondary-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success: #27ae60;
    --error: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===================================
   Header y Navegación
   =================================== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header .logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(10, 98, 145, 0.1);
}

nav ul li a.btn-inscripcion {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

nav ul li a.btn-inscripcion:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Botones
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* ===================================
   Modalidades Section
   =================================== */
.modalidades {
    padding: 80px 20px;
    background: var(--bg-white);
}

.modalidades h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modalidades .subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 50px;
}

.modalidades-grid {
    display: grid;
    gap: 40px;
}

.modalidad-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.modalidad-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.modalidad-image {
    height: 100%;
    overflow: hidden;
}

.modalidad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.modalidad-card:hover .modalidad-image img {
    transform: scale(1.05);
}

.modalidad-content {
    padding: 30px 30px 30px 0;
}

.modalidad-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.modalidad-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modalidad-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modalidad-tags span {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Clubes Page
   =================================== */
.clubes-content {
    padding: 60px 20px;
}

.agradecimiento {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
    border-left: 5px solid var(--primary-color);
}

.agradecimiento h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.agradecimiento p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.agradecimiento .firma {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2em;
    margin-top: 30px;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 40px;
}

.clubes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.club-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.club-card img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.cta-colaboracion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.cta-colaboracion h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-colaboracion p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Equipación Page
   =================================== */
.equipacion-content {
    padding: 60px 20px;
}

.equipacion-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.equipacion-intro h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.equipacion-intro p {
    color: var(--text-light);
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.equipacion-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.equipacion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.equipacion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.equipacion-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.equipacion-card h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.equipacion-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.equipacion-features {
    list-style: none;
}

.equipacion-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.equipacion-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2em;
}

.equipacion-pedido {
    margin-bottom: 60px;
}

.pedido-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pedido-box h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.pedido-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.contact-info {
    text-align: left;
}

.contact-label {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.contact-email {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-email:hover {
    text-decoration: underline;
}

.equipacion-info {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.equipacion-info h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

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

.info-item {
    text-align: center;
    padding: 20px;
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Eventos Page
   =================================== */
.eventos-content {
    padding: 60px 20px;
}

.eventos-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eventos-intro h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.eventos-intro p {
    color: var(--text-light);
    font-size: 1.1em;
    line-height: 1.8;
}

.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.evento-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: var(--transition);
}

.evento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.evento-image {
    position: relative;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.evento-item:hover .evento-image img {
    transform: scale(1.05);
}

.evento-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.evento-info {
    padding: 40px;
}

.evento-fecha {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.evento-fecha svg {
    width: 20px;
    height: 20px;
}

.evento-info h3 {
    color: var(--text-dark);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.evento-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.evento-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.evento-stats span {
    color: var(--text-light);
    font-size: 0.95em;
}

.evento-stats strong {
    color: var(--primary-color);
}

.proximos-eventos {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.proximos-eventos h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.proximos-eventos p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Normas Page
   =================================== */
.normas-content {
    padding: 60px 20px;
}

.normas-intro {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.normas-intro h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.normas-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.normas-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.norma-section {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}

.norma-section h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 20px;
}

.norma-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.norma-section ul {
    list-style: none;
}

.norma-section ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.norma-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.normas-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.importante-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.importante-box h3 {
    color: #856404;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.importante-box p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contacto-normas {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contacto-normas h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.contacto-normas p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contacto-normas ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacto-normas ul li a {
    color: var(--primary-color);
    font-weight: 600;
}

.contacto-normas ul li a:hover {
    text-decoration: underline;
}

.inscripcion-cta {
    text-align: center;
}

/* ===================================
   Inscripciones Page
   =================================== */
.inscripcion-content {
    padding: 60px 20px;
}

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

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.info-card ul li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.formulario-inscripcion {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto 50px;
}

.formulario-inscripcion h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group small {
    display: block;
    color: var(--text-light);
    font-size: 0.9em;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.inscripcion-ayuda {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.inscripcion-ayuda h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.inscripcion-ayuda p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.ayuda-contacto {
    display: flex;
    justify-content: center;
}

.contacto-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.contacto-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contacto-btn svg {
    width: 20px;
    height: 20px;
}

/* Modal de Éxito */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;

/* ===================================
   FIX CONTACTO + IPHONE (AÑADIR AL FINAL)
   =================================== */

/* Evitar scroll horizontal en iOS */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Evita zoom automático en inputs (iPhone) */
input,
textarea,
select {
    font-size: 16px;
}

/* Contenedor contacto seguro */
.contacto-content {
    padding: 60px 20px;
    background: var(--bg-light);
}

/* Grid contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Info contacto */
.contacto-info h2,
.contacto-formulario h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.contacto-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Métodos de contacto */
.contacto-metodos {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.metodo-item {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.metodo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metodo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

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

.metodo-info p {
    font-size: 0.9em;
    color: var(--text-light);
}

/* Formulario contacto */
.contacto-formulario {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Botón enviar */
.contacto-formulario .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Sección extra */
.contacto-extra {
    margin-top: 80px;
}

.contacto-extra h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 40px;
}

.extra-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.option-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.option-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ===================================
   RESPONSIVE CONTACTO
   =================================== */

@media (max-width: 900px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 480px) {

    .contacto-formulario {
        padding: 25px 20px;
    }

    .contacto-info h2,
    .contacto-formulario h2 {
        font-size: 1.7em;
    }

    .metodo-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .option-card {
        padding: 25px;
    }
}

