/* ===== contacto.css ===== */
/* Estilos completos para la página de contacto - Versión Mejorada */

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== HERO SECTION ===== */
.contacto-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    box-sizing: border-box;
}

.contacto-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/kayaks/atardecer.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -2;
}

.contacto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.658) 90%);
    z-index: -1;
}

.contacto-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--fuente-titulos);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-title span {
    color: #ff00ea;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 0, 234, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    font-weight: 500;
}

.scroll-link:hover {
    background: #ff00ea;
    border-color: #ff00ea;
    transform: translateY(5px);
    box-shadow: 0 10px 30px rgba(255, 0, 234, 0.5);
}

/* ===== SECCIÓN PRINCIPAL ===== */
.contacto-principal {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== INFO CARDS ===== */
.contacto-info {
    padding-right: 30px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff00ea;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(255, 0, 234, 0.1);
    border-radius: 20px;
    font-weight: 600;
}

.info-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 25px 0 40px;
}

.contacto-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(141, 11, 145, 0.1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(141, 11, 145, 0.15);
    border-color: #ff00ea;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(141, 11, 145, 0.1), rgba(255, 0, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff00ea;
    transition: var(--transition-smooth);
}

.contact-card:hover .card-icon {
    background: #ff00ea;
    color: white;
    transform: scale(1.1);
}

.card-content h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.2rem;
    color: #0a1a2f;
    margin-bottom: 5px;
}

.card-content p {
    margin-bottom: 3px;
}

.card-content a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #ff00ea;
}

.card-content small {
    color: #718096;
    font-size: 0.8rem;
}

/* ===== REDES SOCIALES ===== */
.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.3rem;
    color: #0a1a2f;
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(141, 11, 145, 0.1);
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 234, 0.1));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-item:hover::before {
    transform: translateX(0);
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(141, 11, 145, 0.2);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.social-item.facebook .social-icon {
    background: linear-gradient(135deg, #4267B2, #6b8bc0);
    color: white;
}

.social-item.instagram .social-icon {
    background: linear-gradient(135deg, #C21975, #8d0b91);
    color: white;
}

.social-item.tiktok .social-icon {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.social-item.whatsapp .social-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.social-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.social-text span {
    display: block;
    font-weight: 600;
    color: #0a1a2f;
    font-size: 0.95rem;
}

.social-text small {
    color: #718096;
    font-size: 0.75rem;
}

.social-hover {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff00ea;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.social-item:hover .social-hover {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FORMULARIO PREMIUM ===== */
.form-wrapper.premium {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(141, 11, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.form-wrapper.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8d0b91, #ff00ea, #8d0b91);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(141, 11, 145, 0.1), rgba(255, 0, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ff00ea;
    border: 2px dashed rgba(255, 0, 234, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.form-header h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.8rem;
    color: #0a1a2f;
    margin-bottom: 10px;
}

.form-header p {
    color: #718096;
    font-size: 0.95rem;
}

.header-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.header-decoration span {
    width: 8px;
    height: 8px;
    background: #ff00ea;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 1.5s ease-in-out infinite;
}

.header-decoration span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.6;
}

.header-decoration span:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

/* Input Groups Modernos */
.input-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.input-icon {
    width: 50px;
    height: 50px;
    background: #f7fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.input-group:hover .input-icon {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.input-field {
    flex: 1;
    position: relative;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--fuente-texto);
}

/* ===== SELECT MEJORADO ===== */
.input-field select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--fuente-texto);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238d0b91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 18px;
    color: #0a1a2f;
}

.input-field select option {
    background: white;
    color: #0a1a2f;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: var(--fuente-texto);
}

.input-field select option:hover {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    color: white;
}

.input-field select:focus {
    outline: none;
    border-bottom-color: #ff00ea;
}

.input-field select:valid {
    color: #0a1a2f;
    font-weight: 500;
}

.input-field select option[value=""][disabled] {
    color: #a0aec0;
    font-style: italic;
    display: none;
}

/* Firefox */
@-moz-document url-prefix() {
    .input-field select {
        text-indent: 0.01px;
        text-overflow: '';
        padding-right: 25px;
    }
}

/* IE/Edge */
.input-field select::-ms-expand {
    display: none;
}

.input-field textarea {
    min-height: 100px;
    resize: vertical;
    padding: 15px 0;
}

.input-field label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #a0aec0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.input-field input:focus ~ label,
.input-field input:valid ~ label,
.input-field select:focus ~ label,
.input-field select:valid ~ label,
.input-field textarea:focus ~ label,
.input-field textarea:valid ~ label {
    top: -15px;
    font-size: 0.8rem;
    color: #ff00ea;
    font-weight: 600;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-bottom-color: #ff00ea;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8d0b91, #ff00ea);
    transition: width 0.3s ease;
}

.input-field input:focus ~ .input-border,
.input-field select:focus ~ .input-border,
.input-field textarea:focus ~ .input-border {
    width: 100%;
}

/* Checkbox Moderno */
.privacy-group {
    margin: 30px 0 20px;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.checkbox-modern input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-circle {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-modern:hover .checkbox-circle {
    border-color: #ff00ea;
    transform: scale(1.1);
}

.checkbox-modern input:checked ~ .checkbox-circle {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    border-color: transparent;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.checkbox-circle:after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-modern input:checked ~ .checkbox-circle:after {
    display: block;
}

.checkbox-text {
    flex: 1;
    font-size: 0.9rem;
    color: #4a5568;
}

.checkbox-text a {
    color: #ff00ea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.checkbox-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff00ea;
    transition: width 0.3s ease;
}

.checkbox-text a:hover::after {
    width: 100%;
}

/* Botón Premium */
.btn-submit-premium {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #8d0b91, #ff00ea);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 234, 0.3);
}

.btn-submit-premium .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-submit-premium .btn-icon {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-submit-premium .btn-icon i {
    position: absolute;
    transition: all 0.3s ease;
}

.btn-submit-premium .btn-icon i.fa-paper-plane {
    opacity: 1;
    transform: translateX(0);
}

.btn-submit-premium .btn-icon i.fa-check {
    opacity: 0;
    transform: scale(0);
}

.btn-submit-premium .btn-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 0, 234, 0.5);
}

.btn-submit-premium:hover .btn-icon {
    background: white;
    color: #8d0b91;
}

.btn-submit-premium:active {
    transform: translateY(-1px);
}

.btn-submit-premium.loading .btn-text {
    opacity: 0.7;
}

.btn-submit-premium.loading .btn-icon i.fa-paper-plane {
    opacity: 0;
    transform: translateX(10px);
}

.btn-submit-premium.loading .btn-icon i.fa-check {
    opacity: 1;
    transform: scale(1);
    animation: checkPop 0.5s ease;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.btn-submit-premium.loading .btn-effect {
    width: 300px;
    height: 300px;
}

/* Footer del formulario */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #a0aec0;
    font-size: 0.8rem;
}

.form-footer i {
    color: #ff00ea;
    animation: lockFloat 2s ease-in-out infinite;
}

@keyframes lockFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ===== MAPA MEJORADO ===== */
.ubicacion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    height: 500px;
    border: 5px solid white;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) brightness(0.95);
    transition: all 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    max-width: 350px;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-left: 5px solid #ff00ea;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h4 {
    font-family: var(--fuente-titulos);
    font-size: 1.3rem;
    color: #0a1a2f;
    margin-bottom: 5px;
}

.location-address {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.meta-item i {
    color: #ff00ea;
    width: 20px;
}

.location-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-map-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    vertical-align: middle;
}

.btn-map-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 234, 0.4);
}

.btn-map-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    vertical-align: middle;
    padding: 0;
}

.btn-map-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-map-whatsapp i {
    font-size: 1.3rem;
    vertical-align: middle;
    line-height: 1;
}

/* Botones de acción rápida */
.ubicacion-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    color: #0a1a2f;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(141, 11, 145, 0.1);
    line-height: 1;
    vertical-align: middle;
}

.action-btn i {
    color: #ff00ea;
    transition: all 0.3s ease;
    font-size: 1rem;
    vertical-align: middle;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 234, 0.15);
    border-color: #ff00ea;
    background: linear-gradient(135deg, #f8f9fa, white);
}

.action-btn:hover i {
    transform: scale(1.2);
}

/* ===== FAQ RÁPIDO ===== */
.contacto-faq {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(141, 11, 145, 0.1);
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141, 11, 145, 0.15);
    border-color: #ff00ea;
}

.faq-item i {
    font-size: 2.5rem;
    color: #ff00ea;
    margin-bottom: 15px;
}

.faq-item h4 {
    font-family: var(--fuente-titulos);
    font-size: 1.2rem;
    color: #0a1a2f;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION - ESTILO NOSOTROS ===== */
.nosotros-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #00000083);
    opacity: 0.95;
    z-index: -2;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/kayaks/atardecer.jpeg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.9;
}

.nosotros-cta .cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.nosotros-cta .cta-content h2 {
    font-family: var(--fuente-titulos);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nosotros-cta .cta-content h2 span {
    color: #FFBF00;
}

.nosotros-cta .cta-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.nosotros-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nosotros-cta .cta-buttons .btn-hero-primary,
.nosotros-cta .cta-buttons .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-weight: 600;
}

.nosotros-cta .cta-buttons .btn-hero-primary {
    background: white;
    color: #8d0b91;
    border: 2px solid transparent;
}

.nosotros-cta .cta-buttons .btn-hero-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.nosotros-cta .cta-buttons .btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.nosotros-cta .cta-buttons .btn-hero-secondary:hover {
    background: white;
    color: #8d0b91;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.nosotros-cta .cta-buttons .btn-hero-primary i,
.nosotros-cta .cta-buttons .btn-hero-secondary i {
    transition: transform 0.3s ease;
}

.nosotros-cta .cta-buttons .btn-hero-primary:hover i,
.nosotros-cta .cta-buttons .btn-hero-secondary:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacto-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-overlay {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .location-card {
        max-width: 100%;
    }
    
    .form-wrapper.premium {
        padding: 30px 20px;
    }
    
    .ubicacion-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nosotros-cta {
        padding: 70px 0;
    }
    
    .nosotros-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nosotros-cta .cta-buttons .btn-hero-primary,
    .nosotros-cta .cta-buttons .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .social-item {
        padding: 12px 15px;
    }
    
    .btn-submit-premium {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .location-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-map-primary {
        width: 100%;
    }
    
    .btn-map-whatsapp {
        width: 100%;
        height: 45px;
        border-radius: 50px;
    }
}

/* ===== SELECT ULTRA PREMIUM ===== */
.premium-select {
    width: 100%;
    padding: 20px 0 10px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    font-family: var(--fuente-texto);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238d0b91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 18px;
    color: #0a1a2f;
}

.select-label {
    position: absolute;
    left: 0;
    top: 0;
    color: #8d0b91;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.premium-select option {
    background: white;
    color: #0a1a2f;
    padding: 15px;
    font-size: 1rem;
}

.premium-select option:hover {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    color: white;
}

.premium-select:focus {
    outline: none;
    border-bottom-color: #ff00ea;
}

/* Ajuste para el contenedor del select */
.select-field {
    position: relative;
}

/* Cuando el select tiene un valor seleccionado, mantenemos la etiqueta arriba */
.premium-select:valid + .select-label,
.premium-select:focus + .select-label {
    color: #8d0b91;
    font-size: 0.75rem;
    top: 0;
}

/* Estilo para cuando no hay selección */
.premium-select:invalid {
    color: #a0aec0;
}

.premium-select:valid {
    color: #0a1a2f;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-select {
        padding: 18px 0 8px 0;
        font-size: 0.95rem;
    }
    
    .select-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .premium-select option {
        padding: 10px;
        font-size: 0.9rem;
    }
}