/* 
Styles for Rico Hot Dog Header and Banner 
Focusing on mimicking the image layout 
*/

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #ffff;
    /* Just in case page goes longer */
}

/* ================= HEADER SECTION ================= */
.header {
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    /* Logo and Nav in a line */
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 65px;
    /* Adjusting logo size */
    display: block;
    margin-right: 40px;
}

.nav {
    flex-grow: 1;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
}

.nav ul li {
    display: block;
}

.nav a {
    text-decoration: none;
    color: #444;
    /* Dark grey */
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #17793b;
    /* Red color for active 'Inicio' */
}

/* ================= BANNER SECTION ================= */
.banner {
    background-color: #136632;
    /* Red background like image */
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Text Container */
.banner-text {
    flex: 1;
    color: #ffffff;
    z-index: 10;
}

.banner-text h1 {
    font-size: clamp(1.5rem, 5vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.banner-text-max {
    font-size: clamp(2rem, 10vw, 120px);
}

.banner-text-script {
    /* Aquí cambias la cantidad de espaciado a la izquierda */
    margin-left: 40px;
    /* También le agregué la fuente script estilo firma que usaste en la imagen */
    font-weight: 700;
}

/* Highlighting 'aún más suave' */
.highlight-wrapper {
    display: inline-block;
    margin-bottom: 20px;
    z-index: 100;
    align-self: flex-start;
    white-space: nowrap;
}

.description-header {
    color: white;
    line-height: 1.9
}

.highlight-bg {
    color: #136632;
    background-color: #fdc405;
    font-size: clamp(1.5rem, 4vw, 55px);
    font-weight: 900;
    padding: clamp(5px, 1vw, 8px) clamp(10px, 3vw, 25px);
    display: inline-block;
    letter-spacing: -1px;
    /* Simulate the slightly uneven hand-drawn rotated box if needed */
    /* transform: rotate(-1deg); */
    /* box-shadow: inset 0 0 0 1px #fff; */
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Image Container */
.banner-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 150px;
    /* Align bottom */
}

.banner-image img {
    width: 100%;
    max-width: 800px;
    /* Make image big */
    transform: scale(1.4) translateX(-8%) rotate(-2deg);
    /* Position image nicely to overflow towards text like in design */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
    /* Adding some shadow for depth */
}

/* The curved white lines from the image */
.swoosh {
    position: absolute;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.swoosh-left {
    width: 100px;
    height: 100px;
    border-right: none;
    border-bottom: none;
    left: -120px;
    top: 50%;
    transform: rotate(-20deg) scale(1.5);
}

.swoosh-right {
    width: 120px;
    height: 120px;
    border-left: none;
    border-top: none;
    right: 30px;
    bottom: 20%;
    transform: rotate(-20deg) scale(1.5);
}

.disclaimer {
    position: absolute;
    bottom: -60px;
    right: 120px;
    color: #ffffff;
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 700;
    transform: rotate(-8deg);
    /* Tilted text */
    z-index: 10;
}

/* Mobile Menu Toggle Checkbox (Global Hide) */
#menu-toggle-checkbox,
.menu-toggle {
    display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
    }

    .banner-text {
        text-align: center;
        margin-bottom: 60px;
        position: absolute;
        right: 0;
        transform: rotate(-45deg);
    }

    .banner-image img {
        transform: scale(1) translateX(0) rotate(0);
        max-width: 100%;
    }

    .disclaimer {
        bottom: -20px;
        right: 10px;
        transform: rotate(0);
        font-size: 14px;
    }

    /* Mobile Header Layout */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo img {
        margin-right: 0;
        margin-bottom: 0;
    }

    /* Hamburger Icon */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Dropdown Nav Styling */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        z-index: 100;
        padding: 10px 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav ul li {
        width: 100%;
    }

    .nav a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        color: #444;
    }

    /* Toggle Logic */
    #menu-toggle-checkbox:checked~.nav {
        display: block;
    }

    /* Hamburger Animation to 'X' */
    #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle-checkbox:checked~.menu-toggle .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ================= BANNER SABOR SECTION ================= */
.banner-sabor {
    background-color: #0e4d27;
    width: 100%;
    padding: 60px 20px;
    overflow: hidden;
}

.banner-sabor-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-sabor-text {
    flex: 1;
    color: #ffffff;
    z-index: 2;
}

.banner-sabor-heading {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 18px;
    position: relative;
    /* Para posicionar la flecha */
}

.banner-sabor-arrow {
    /* position: absolute; */
    width: clamp(60px, 10vw, 80px);
    height: auto;
    right: -30px;
    bottom: -60px;
    z-index: 10;
    pointer-events: none;
    /* Que no afecte el clic */
    transform: rotate(206deg);
}

.banner-sabor-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 6vw, 60px);
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: -5px;
}

.banner-sabor-bold {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(3.5rem, 10vw, 100px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -3px;
    line-height: 0.9;
    display: block;
}

.banner-sabor-badge {
    display: inline-block;
    background-color: #fdc405;
    color: #0e4d27;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(0.9rem, 2vw, 18px);
    font-weight: 800;
    padding: 6px 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    border-radius: 2px;
}

.banner-sabor-subtitle {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.4rem, 3vw, 28px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.banner-sabor-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 400px;
}

.banner-sabor-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-sabor-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.banner-sabor-image img:hover {
    transform: rotate(0deg) scale(1.04);
}

/* ================= BANNER SABOR responsive ================= */

@media screen and (max-width: 992px) {
    .banner-sabor-arrow {
        transform: rotate(300deg)
    }
}

@media (max-width: 768px) {
    .banner-sabor-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-sabor-desc {
        max-width: 100%;
    }

    .banner-sabor-image img {
        max-width: 300px;
        transform: rotate(0);
    }
}

/* ================= MENU SECTION ================= */
.menu-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.menu-title {
    text-align: center;
    color: #136632;
    font-size: clamp(35px, 6vw, 60px);
    font-weight: 900;
    margin-bottom: 60px;
}

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

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    /* Bottom alignment for images */
    gap: 40px;
}

.menu-item {
    flex: 1 1 200px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}

.menu-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.menu-item:hover img {
    transform: scale(1.08) translateY(-5px);
}

.menu-item-name {
    margin-top: -15px;
    /* Pull text slightly up */
    font-weight: 900;
    font-size: clamp(18px, 2.5vw, 24px);
    transform: rotate(-5deg);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    z-index: 2;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    /* White outline */
}

/* ================= CARDS SECTION ================= */
.cards-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    position: relative;
    width: 320px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 28px;
    font-family: 'Montserrat', 'Arial Narrow', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

@media (max-width: 768px) {
    .info-card {
        width: 100%;
        max-width: 400px;
        aspect-ratio: auto;
        /* Allow natural flow if needed, or keep 1/1 */
        height: 350px;
    }
}

/* ================= FOOTER SECTION ================= */
.site-footer {
    background-color: #f4f4f4;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-social-title {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    color: #c0392b;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: scale(1.15);
    color: #e74c3c;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: inline-block;
}

.footer-copyright {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.footer-copyright a {
    color: #555;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #c0392b;
}

/* ================= HERO HISTORIA ================= */
.hero-historia {
    background-color: #17793b;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-historia-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 180px;
    padding: 0 20px;
}

.hero-historia-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    z-index: 2;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-hotdog {
    position: absolute;
    height: 140%;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.hero-hotdog--left {
    left: -2%;
    transform: rotate(-10deg) scale(1.1);
}

.hero-hotdog--right {
    right: -2%;
    transform: rotate(10deg) scaleX(-1) scale(1.1);
}

/* Historia page content area */
.historia-content {
    padding: 80px 20px;
    background-color: #ffffff;
    min-height: 200px;
}

.historia-container {
    max-width: 900px;
    margin: 0 auto;
}

.historia-heading {
    font-size: clamp(28px, 4vw, 42px);
    color: #17793b;
    /* Using red for main heading */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
}

.historia-subheading {
    font-size: clamp(22px, 3vw, 30px);
    color: #17793b;
    /* Using green for subheadings */
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.historia-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: center;
}

.historia-paragraph--highlight {
    font-weight: 700;
    color: #222;
    margin-top: 40px;
    font-size: 20px;
}

/* ================= TABLES ================= */
.franquicias-table-container {
    background-color: #f7f7f7;
    /* Light grey background matching image feel */
    padding: 30px;
    margin: 40px auto;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.franquicias-table {
    width: 100%;
    border-collapse: collapse;
}

.franquicias-table tr {
    border-bottom: 1px solid #d1d1d1;
    /* Thin bottom border like in image */
}

/* Remove bottom border from last row if needed, but the image seems to have a line below it */

.franquicias-table td {
    padding: 18px 20px;
    font-size: 18px;
    color: #444;
}

.franquicias-table .table-label {
    font-weight: 800;
    /* Bold left column */
    color: #222;
    width: 40%;
}

.franquicias-table .table-value {
    font-weight: 400;
    /* Regular right column */
}

@media (max-width: 600px) {
    .franquicias-table td {
        display: block;
        width: 100%;
    }

    .franquicias-table .table-label {
        padding-bottom: 5px;
    }

    .franquicias-table .table-value {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

/* ================= CONTACTOS SECTION ================= */
.contactos-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.contactos-info {
    flex: 1;
    max-width: 400px;
    padding-top: 20px;
}

.Contactos-label {
    font-size: 16px;
    color: #c0392b;
    /* Red labels matching the image */
}

.Contactos-label strong {
    font-weight: 700;
}

.contactos-link {
    font-weight: 700;
    color: #333;
    /* Dark bold text for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contactos-link:hover {
    color: #c0392b;
    /* Hover matches the brand red */
}

.contactos-form-container {
    flex: 2;
    background: transparent;
}

.contactos-form {
    width: 100%;
}

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #555;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* Rounded borders matching image */
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.form-control:focus {
    border-color: #fdc405;
    /* Yellow border on focus */
}

.form-textarea {
    resize: vertical;
}

.btn-enviar {
    background-color: #17793b;
    /* Red button */
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-enviar:hover {
    background-color: #136632;
    /* Darker red on hover */
    transform: translateY(-2px);
}

/* ================= SUGERENCIAS SECTION ================= */
.sugerencias-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.sugerencias-intro {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sugerencias-disclaimer {
    color: #c0392b;
    /* Red disclaimer text */
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    margin-top: -10px;
    /* Pull it slightly closer to textarea */
}

/* ================= EMPLEOS SECTION ================= */
.empleos-grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    margin-top: 20px;
}

.empleos-image {
    flex: 0 0 35%;
    max-width: 350px;
    text-align: center;
}

.empleos-details {
    flex: 1;
}

.empleos-section-title {
    color: #136632;
    /* Red section numbers and title */
    font-size: 22px;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.empleos-details h2:first-child {
    margin-top: 0;
}

.empleos-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.empleos-table td {
    padding: 12px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eaeaea;
    /* Light gray separators */
}

/* Left column slightly smaller font and right column regular */
.empleos-table td:first-child {
    width: 45%;
    padding-right: 20px;
}

.empleos-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.empleos-list {
    list-style: none;
    /* Removed default bullets as they use 'a)', 'b)' */
    padding-left: 15px;
    margin-top: 10px;
}

.empleos-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.empleos-list li::before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
}

.empleos-subsection-title {
    color: #136632;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.empleos-email-link {
    color: #136632;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.empleos-email-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .empleos-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .empleos-image {
        max-width: 250px;
    }

    .empleos-table td {
        display: block;
        width: 100% !important;
        padding: 5px 0;
    }

    .empleos-table tr {
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 15px;
        display: block;
        padding-bottom: 10px;
    }

    .empleos-table tr td {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .contactos-grid {
        flex-direction: column;
    }

    .contactos-info {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-historia-content {
        min-height: 120px;
    }

    .hero-hotdog {
        height: 120%;
    }

    .hero-hotdog--left {
        left: -10%;
    }

    .hero-hotdog--right {
        right: -10%;
    }
}

@media (min-width: 992px) {
    .banner-container {
        flex-wrap: wrap;
    }

    .banner-text {
        right: 60px;
        flex: 1;
        color: #ffffff;
        position: absolute;
        z-index: 10;
        top: 0px;
        transform: rotate(-17deg);
    }

    .banner-text-max {
        font-size: clamp(2rem, 10vw, 100px);
    }

    .banner-text h1 {
        font-size: clamp(1.5rem, 3vw, 110px);
    }

    .banner-image {
        justify-content: center;
        align-items: flex-start;
    }

    .banner-image img {
        max-width: 400px;
    }

    .banner-last-text {
        margin-top: 30px;
        min-width: 1000px;
    }

    .description-header {
        font-size: 20px;
    }
}

/* ================= MENU PROMO CARD (NEW) ================= */
.menu-promo-card {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #eaeaea 0%, #f5f5f5 40%, #eaeaea 100%);
    border: 3px solid #666;
    /* Border matching the image style */
    border-radius: 40px;
    padding: 25px 40px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 50px auto;
    /* Centered with bottom margin */
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
}

.promo-card-content {
    flex: 1;
    z-index: 2;
}

.promo-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.promo-card-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.promo-card-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-card-price {
    font-size: 22px;
    font-weight: 800;
    color: #17793b;
}

.promo-card-stars {
    color: #17793b;
    font-size: 18px;
    letter-spacing: 2px;
}

.promo-card-image {
    width: 250px;
    margin-right: -60px;
    /* Pull it outside the border */
    margin-top: -10px;
    margin-bottom: -10px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.promo-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 650px) {
    .menu-promo-card {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 30px 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .promo-card-price-row {
        justify-content: center;
    }

    .promo-card-image {
        margin-right: 0;
        margin-top: 20px;
        margin-bottom: -10px;
        width: 100%;
        max-width: 300px;
    }
}

/* ================= NOSOTROS SECTION ================= */
.nosotros-section {
    display: flex;
    width: 100%;
    background-color: #1a6e38;
    /* dark green matching the image */
    overflow: hidden;
    margin-bottom: 20px;
}

.nosotros-image-col {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    /* prevents bottom spacing issues with img */
}

.nosotros-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nosotros-content-col {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.nosotros-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nosotros-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-family: inherit;
    /* maybe serif if desired, but image looks like standard serif/sans mix. Actually, looking closely, it's a serif font! Let's use a standard serif for the body text to match the image exactly. */
    /* font-family: 'Georgia', serif; */
}

.nosotros-btn {
    display: inline-block;
    background-color: #d79c2a;
    /* golden yellow */
    color: #13552a;
    /* dark green text */
    font-weight: 800;
    font-size: 22px;
    padding: 12px 35px;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nosotros-btn:hover {
    transform: translateY(-3px);
    background-color: #efb133;
}

@media (max-width: 992px) {
    .nosotros-section {
        flex-direction: column;
    }

    .nosotros-image-col {
        min-height: 350px;
    }

    .nosotros-content-col {
        padding: 50px 30px;
        align-items: center;
        text-align: center;
    }

    .nosotros-btn {
        align-self: center;
    }
}

/* ================= FRANQUICIAS PROMO SECTION ================= */
.franquicias-promo {
    background-color: #ffff;
    border-radius: 60px 60px 0 0;
    position: relative;
    /* large rounded top corners */
    padding: 60px 40px;
    top: -59px;
    max-width: 1200px;
    /* or 100% depending on constraints, keeping it responsive */
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.03);
}

.franquicias-promo-header {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    color: #444;
    margin-bottom: 50px;
}

.franquicias-promo-image {
    width: 100%;
    max-width: 900px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.franquicias-promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.franquicias-promo-content {
    width: 100%;
    max-width: 900px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.franquicias-promo-icon {
    width: 90px;
    height: auto;
    margin-bottom: 25px;
}

.franquicias-promo-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

.franquicias-promo-text {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    font-family: 'Georgia', serif;
}

@media (max-width: 768px) {
    .franquicias-promo {
        padding: 50px 20px;
        border-radius: 40px 40px 0 0;
    }
}

/* ================= NEW FOOTER SECTION ================= */
.new-footer {
    display: flex;
    width: 100%;
    min-height: 250px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.new-footer-left {
    flex: 1;
    background-color: #fff;
}

.new-footer-middle {
    flex: 3;
    background-color: #17793b;
    /* dark green matching brand/image */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    color: #ffffff;
}

.footer-person-info {
    display: flex;
    flex-direction: column;
}

.footer-person-name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-person-role {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.new-footer-right {
    flex: 1;
    background-color: #fecb18;
    /* golden yellow */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.new-footer-right img {
    max-width: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .new-footer {
        flex-direction: column;
    }

    .new-footer-left {
        display: none;
        /* hide empty gray section on small screens */
    }

    .new-footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 30px;
    }

    .new-footer-right {
        padding: 40px 30px;
    }
}