/* Reset y base */
.gestto-contacto-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.gestto-contacto-wrapper {
    font-family: 'Uni Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #262626;
    line-height: 1.5;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}
/* Tipografías */
.gestto-contacto-wrapper h1,
.gestto-contacto-wrapper h2,
.gestto-contacto-wrapper h3,
.gestto-contacto-wrapper .btn {
    font-family: 'MADE TOMMY', 'Poppins', 'Montserrat', sans-serif;
    font-weight: bold;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 70px 0;
}
.section-title {
    font-size: 2.2rem;
    color: #0093AD;
    margin-bottom: 16px;
    font-weight: bold;
    letter-spacing: -0.3px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6A8085;
    max-width: 700px;
    margin-bottom: 48px;
}
/* Utilidades de accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Botones */
.btn-primary {
    display: inline-block;
    background: #20A537;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #16802b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32,165,55,0.25);
}
.btn-full {
    width: 100%;
}
/* Hero */
.hero-contacto {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0 20px;
}
.hero-content {
    flex: 1;
}
.hero-badge {
    color: #20A537;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}
.hero-contacto h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #0093AD;
    margin-bottom: 20px;
}
.hero-contacto p {
    font-size: 1.2rem;
    color: #4a5b60;
    margin-bottom: 32px;
}
.hero-logo {
    flex: 0 0 240px;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0;
}
.hero-logo:hover {
    transform: scale(1.02);
}
.hero-logo img {
    max-width: 100%;
    height: auto;
}
/* Tarjetas de contacto */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px 0;
}
.contact-card {
    flex: 1 1 260px;
    background: #F9FCFC;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0ecee;
    text-decoration: none;
    color: inherit;
    display: block;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0,147,173,0.15);
    border-color: #0093AD40;
}
.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0093AD10, #20A53710);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #0093AD20, #20A53720);
    transform: scale(1.05);
}
.contact-icon svg {
    width: 44px;
    height: 44px;
    stroke: #0093AD;
    stroke-width: 1.5;
    fill: none;
}
.contact-card h3 {
    font-size: 1.5rem;
    color: #0093AD;
    margin-bottom: 12px;
}
.contact-card p {
    color: #4a5b60;
    word-break: break-word;
}
.contact-note {
    font-size: 0.85rem;
    margin-top: 8px;
    color: #6A8085;
}
/* Mapa y formulario */
.contact-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin: 48px 0;
}
.map-container {
    flex: 1;
    min-height: 350px;
    background: #eef2f2;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.map-container:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-form {
    flex: 1;
    background: #F9FCFC;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #e0ecee;
    transition: all 0.3s ease;
}
.contact-form:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.contact-form h3 {
    color: #0093AD;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d0e0e2;
    border-radius: 40px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0093AD;
    box-shadow: 0 0 0 3px rgba(0,147,173,0.1);
}
.form-group textarea {
    border-radius: 24px;
    resize: vertical;
}
.form-note {
    font-size: 0.75rem;
    margin-top: 16px;
    color: #6A8085;
}
/* Horario */
.schedule-card {
    background: #F9FCFC;
    border-radius: 32px;
    padding: 32px;
    margin: 48px 0;
    border: 1px solid #e0ecee;
    transition: all 0.3s;
    text-align: center;
}
.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.schedule-card h3 {
    color: #0093AD;
    margin-bottom: 16px;
}
.emergencia {
    font-weight: normal;
    color: #6A8085;
}
.oficina {
    margin-top: 16px;
}
/* CTA final */
.cta-final {
    background: #0093AD0c;
    text-align: center;
    border-radius: 48px;
    padding: 56px 32px;
    margin: 40px 0;
    transition: all 0.3s ease;
}
.cta-final:hover {
    background: #0093AD14;
    transform: scale(0.99);
}
.cta-titulo {
    font-size: 2rem;
    color: #0093AD;
    margin-bottom: 16px;
}
.cta-subtitulo {
    margin: 16px 0 24px;
    font-size: 1.1rem;
    color: #4a5b60;
}
.cta-boton {
    background: #20A537;
}
/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .hero-contacto h1 { font-size: 2.2rem; }
    .contact-grid { gap: 20px; }
    .contact-info-row {
        flex-direction: column;
    }
    .map-container {
        min-height: 250px;
    }
}
