

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.4rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #E17055;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
}



nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-shrink: 0;
}

nav li {
    position: relative;
}

nav a {
    color: #2B4C7E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E17055;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: #E17055;
    background: rgba(225, 112, 85, 0.1);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 80%;
}

nav a.active {
    background: linear-gradient(135deg, #E17055 0%, #d65a3f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 112, 85, 0.3);
}

nav a.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 112, 85, 0.4);
}

.page-header {
    background: #2B4C7E;
    color: #fff;
    padding: 12rem 2rem 8rem;
    text-align: center;
    animation: fadeInDown 1.2s ease-out;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.page-header p {
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0);     }
}

.contact-intro {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-intro h2 {
    font-size: 2.2rem;
    color: #2B4C7E;
    margin-bottom: 1.2rem;
}

.contact-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 2.8rem;
    box-shadow: 0 8px 32px rgba(43, 76, 126, 0.1);
    border-top: 4px solid #E17055;
}

.form-group {
    margin-bottom: 1.4rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: #2B4C7E;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #dce6ee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    background: #fafbfc;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #E17055;
    box-shadow: 0 0 0 3px rgba(225, 112, 85, 0.15);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1.1rem;
    background: #E17055;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(225, 112, 85, 0.35);
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
    margin-top: 0.5rem;
}

.contact-form button:hover {
    background: #d65a3f;
    transform: scale(1.03);
    box-shadow: 0 6px 22px rgba(225, 112, 85, 0.5);
}

.contact-info {
    background: #f4f6f8;
    border-radius: 16px;
    padding: 2.8rem 2.4rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.contact-info > h2 {
    font-size: 1.7rem;
    color: #2B4C7E;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E17055;
}

.info-item {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #dce6ee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h3 {
    font-size: 1rem;
    color: #E17055;
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}

.info-item a {
    color: #2B4C7E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #E17055;
}

.phone-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B4C7E;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #E17055;
}

.phone-person {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}

.hours-highlight {
    background: #2B4C7E;
    color: #fff;
    padding: 4.5rem 2rem;
    text-align: center;
}

.hours-highlight h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.hours-content {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.8rem 2.2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-row:last-child {
    border-bottom: none;
}

.day  { font-weight: 600; font-size: 0.95rem; }
.time { font-weight: 700; color: #E17055; font-size: 0.95rem; }

.map-section {
    background: #f4f6f8;
    padding: 5rem 2rem;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-container > h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2B4C7E;
    margin-bottom: 1.8rem;
}

.map-container iframe {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    display: block;
}

footer {
    background: #2B4C7E;
    color: white;
    padding: 3rem;
    border-top: 4px solid #E17055;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.footer-section h4 {
    color: #E17055;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #E8F4F8;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .page-header     { padding: 12rem 2rem 8rem; }
    .page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}
    .page-header p {
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

    .contact-grid    { grid-template-columns: 1fr; }
    .contact-form,
    .contact-info    { padding: 2rem 1.5rem; }

    .footer-content  { grid-template-columns: 1fr; }
    nav ul           { display: none; }
}

@media (max-width: 480px) {
    .contact-intro h2      { font-size: 1.7rem; }
    .contact-form          { padding: 1.8rem 1.2rem; }
    
}


.aviso {
    display: none;          
    max-width: 860px;
    margin: 2rem auto 0;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.aviso--ok {
    background: #d4edda;
    color: #1e6e34;
    border: 2px solid #a3d9b1;
}

.aviso--error {
    background: #fde8e8;
    color: #9b1c1c;
    border: 2px solid #f5a0a0;
}

@media (max-width: 768px) {
    header {
        position: static;
        padding: 0.35rem 0 0.75rem;
    }

    nav {
        flex-direction: column;
        justify-content: center;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 78px;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
        width: 100%;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.65rem;
        border-radius: 18px;
    }

    nav a:hover {
        transform: none;
    }

    nav a::after {
        display: none;
    }

    .page-header {
        padding: 4rem 1.2rem 3rem;
    }

    .page-header h1 {
        font-size: 2.1rem;
        line-height: 1.15;
        letter-spacing: 1.2px;
    }

    .page-header p,
    .contact-intro p {
        font-size: 1rem;
    }

    .contact-intro {
        padding: 3rem 1.2rem;
    }

    .contact-intro h2,
    .hours-highlight h2,
    .map-container > h2 {
        font-size: 1.75rem;
    }

    .contact-section {
        padding: 1rem 1rem 3.5rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem 1.1rem;
        border-radius: 10px;
    }

    .contact-info > h2 {
        font-size: 1.45rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .hours-highlight,
    .map-section {
        padding: 3.5rem 1rem;
    }

    .hours-content {
        padding: 1.2rem;
    }

    .hours-row {
        gap: 1rem;
    }

    .map-container iframe {
        height: 320px;
    }

    footer {
        padding: 2.5rem 1.25rem;
    }
}

@media (max-width: 420px) {
    nav a {
        font-size: 0.82rem;
        padding: 0.35rem 0.5rem;
    }

    .page-header h1 {
        font-size: 1.85rem;
    }

    .hours-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }
}
