body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #f4f4f4;
}
.navbar {
    background: linear-gradient(135deg, #111 0%, #fff700 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar-logo {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #00aaff, 4px 4px 0 #222;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.navbar-underline {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #00aaff;
    border-radius: 2px;
    margin-top: 4px;
    content: "";
}
.navbar-links {
    display: flex;
    gap: 2rem;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: color 0.2s;
    position: relative;
}
.navbar-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00aaff;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.navbar-links a:hover::after {
    width: 100%;
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .navbar-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}
.menu-section {
    padding: 3rem 1rem;
    background: #fff;
    text-align: center;
}
.menu-section h1 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 1rem;
}
.menu-section h2 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.5rem;
    color: #00aaff;
    margin: 2.5rem 0 1.5rem 0;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.menu-card {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem;
    text-align: left;
    border-left: 6px solid #00aaff;
}
.menu-card h3, .menu-card h4 {
    font-family: 'Oswald', Arial, sans-serif;
    color: #00aaff;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}
.menu-card p {
    color: #333;
    margin-bottom: 1rem;
}
.menu-card .price {
    font-weight: bold;
    color: #222;
    font-size: 1.1rem;
}
.hero {
    background: #fff;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.hero h1 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2.2rem;
    color: #00aaff;
    margin-bottom: 1rem;
}
.hero p {
    color: #333;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}
.hero-alt {
    background: #f4f4f4;
}

.menus-destacados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.menu-card {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem;
    text-align: left;
    border-left: 6px solid #00aaff;
}
.menu-card h2 {
    color: #00aaff;
    font-family: 'Oswald', Arial, sans-serif;
    margin: 0 0 0.5rem 0;
}
.menu-card p {
    color: #333;
}

.contacto-section {
    background: #fff;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}
.contacto-section h2 {
    color: #00aaff;
    font-family: 'Oswald', Arial, sans-serif;
}
.contacto-info {
    margin-bottom: 1.5rem;
}
.mapa {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.mate-section {
    background: #fff;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.mate-section h1 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2.2rem;
    color: #00aaff;
    margin-bottom: 1rem;
}
.mate-section p {
    color: #333;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
.postres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.postre-card {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem;
    text-align: left;
    border-left: 6px solid #00aaff;
}
.postre-card h2 {
    color: #00aaff;
    font-family: 'Oswald', Arial, sans-serif;
    margin: 0 0 0.5rem 0;
}
.postre-card p {
    color: #333;
}

.formulario-contacto {
    max-width: 500px;
    margin: 2rem auto 0 auto;
    background: #f8f8f8;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: left;
}

.formulario-contacto h3 {
    color: #00aaff;
    font-family: 'Oswald', Arial, sans-serif;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5em;
    text-align: center;
}

.form-group {
    margin-bottom: 1.3em;
}

.form-group label {
    font-weight: bold;
    color: #1565c0;
    font-family: 'Oswald', Arial, sans-serif;
    display: block;
    margin-bottom: 0.3em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7em;
    border-radius: 7px;
    border: 1.5px solid #b3e0fc;
    font-size: 1em;
    font-family: 'Roboto', Arial, sans-serif;
    margin-top: 0.2em;
    background: #fff;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid #00aaff;
    outline: none;
    box-shadow: 0 0 0 2px #74acdf33;
}

.form-btn {
    background: linear-gradient(90deg, #00aaff 60%, #74acdf 100%);
    color: #fff;
    padding: 0.8em 2.2em;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: 'Oswald', Arial, sans-serif;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,170,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 0.5em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-btn:hover,
.form-btn:focus {
    background: linear-gradient(90deg, #1565c0 60%, #00aaff 100%);
    box-shadow: 0 4px 16px rgba(0,170,255,0.18);
}

/* Scrollbar patriota argentino */
::-webkit-scrollbar {
    width: 14px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #74acdf 60%, #fff 90%, #f6c915 100%);
    border-radius: 8px;
    border: 3px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1565c0 60%, #f6c915 100%);
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 8px;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #74acdf #fff;
}
.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 0.7em 1.5em;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.15);
    border: none;
    cursor: pointer;
}
.whatsapp-btn:hover,
.whatsapp-btn:focus {
    background: #128c7e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
    text-decoration: none;
}
.form-confirm {
    background: #e6f7ff;
    border: 1.5px solid #00aaff;
    border-radius: 10px;
    padding: 2em 1em;
    text-align: center;
    margin-top: 1.5em;
    color: #1565c0;
    font-size: 1.15em;
}