/*
style.css - Estilos Generales para sancarlosenlinea.com
Proyecto: sancarlosenlinea.com
Agencia: [Tu Empresa de Marketing Digital]
Fecha: Enero 2026
Descripción: Estilos base, diseño responsivo, y look "fresco y vibrante".
*/

/* --- Variables CSS (Colores y Fuentes) --- */
:root {
/* Colores Primarios */
--primary-color: #4CAF50;          /* Verde Vibrante */
--primary-dark: #388E3C;           /* Verde más Oscuro */
--primary-light: #81C784;          /* Verde Claro */

/* Colores Secundarios/Acento */
--secondary-color: #FFA000;        /* Naranja/Ámbar Brillante */
--secondary-dark: #FF8F00;         /* Naranja más Oscuro */
--secondary-light: #FFECB3;        /* Naranja Claro */
--accent-color: #007BFF;           /* Azul para enlaces/botones */
--accent-hover: #0056b3;           /* Azul más oscuro al hover */

/* Colores de Texto */
--text-dark: #333333;
--text-medium: #555555;
--text-light: #f8f9fa;

/* Colores de Fondo */
--background-light: #f8f9fa;       /* Gris muy claro */
--background-white: #ffffff;

/* Fuentes */
--font-heading: 'Montserrat', sans-serif;
--font-body: 'Open Sans', sans-serif;

/* Espaciado */
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 3rem;
}

/* --- Reseteo Básico y Estilos Globales --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth; /* Desplazamiento suave para enlaces ancla */
}

body {
font-family: var(--font-body);
line-height: 1.6;
color: var(--text-dark);
background-color: var(--background-white);
-webkit-font-smoothing: antialiased; /* Mejor renderizado de fuentes */
text-rendering: optimizeLegibility;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-sm);
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
color: var(--text-dark);
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

a {
color: var(--accent-color);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--accent-hover);
text-decoration: underline;
}

p {
margin-bottom: 1rem;
}

img {
max-width: 100%;
height: auto;
display: block; /* Elimina espacio extra debajo de las imágenes */
}

ul {
list-style: none;
}

.text-center {
text-align: center;
}

.subtitle {
font-size: 1.2rem;
color: var(--text-medium);
margin-bottom: var(--spacing-lg);
}

.highlight {
color: var(--primary-color);
}

/* --- Botones --- */
.btn {
display: inline-block;
padding: 0.8rem 1.8rem;
border-radius: 50px;
font-weight: 600;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
border: none;
font-family: var(--font-heading);
font-size: 1rem;
text-decoration: none;
}

.btn-primary {
background-color: var(--primary-color);
color: var(--text-light);
}

.btn-primary:hover {
background-color: var(--primary-dark);
color: var(--text-light);
transform: translateY(-2px);
text-decoration: none;
}

.btn-secondary {
background-color: var(--secondary-color);
color: var(--text-dark);
}

.btn-secondary:hover {
background-color: var(--secondary-dark);
color: var(--text-dark);
transform: translateY(-2px);
text-decoration: none;
}

.btn-primary-light { /* Para fondos oscuros */
background-color: var(--background-white);
color: var(--primary-dark);
}

.btn-primary-light:hover {
background-color: var(--primary-light);
color: var(--background-white);
transform: translateY(-2px);
text-decoration: none;
}

.btn-lg {
padding: 1rem 2.5rem;
font-size: 1.1rem;
}

/* --- Secciones Generales --- */
.section-padded {
padding: var(--spacing-lg) 0;
}

.bg-light {
background-color: var(--background-light);
}

.bg-primary-dark {
background-color: var(--primary-dark);
}
.text-light {
color: var(--text-light);
}

/* --- Header y Navegación (Homepage) --- */
.header {
background-color: var(--background-white);
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.8rem;
color: var(--primary-color);
text-decoration: none;
}

.nav-list {
display: flex;
gap: var(--spacing-md);
}

.nav-list a {
font-weight: 600;
color: var(--text-medium);
font-size: 1.05rem;
padding: 0.5rem 0;
position: relative;
}

.nav-list a:hover,
.nav-list a.active {
color: var(--primary-color);
text-decoration: none;
}

.nav-list a::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 3px;
background-color: var(--primary-color);
transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
width: 100%;
}

.nav-toggle {
display: none; /* Oculto en desktop */
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 25px;
z-index: 1001; /* Asegura que esté sobre otros elementos */
}

.nav-toggle .hamburger {
display: block;
width: 100%;
height: 3px;
background-color: var(--text-dark);
border-radius: 2px;
transition: all 0.3s ease;
}
.nav-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section (Homepage) --- */
.hero {
position: relative;
overflow: hidden;
height: 70vh; /* Ajustable */
min-height: 450px;
display: flex;
align-items: center;
justify-content: center;
}

.carousel-container {
width: 100%;
height: 100%;
position: relative;
}

.carousel-slide {
display: none; /* Se mostrará con JS */
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
animation-name: fade;
animation-duration: 1.5s;
}

.carousel-slide.active {
display: block;
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

.carousel-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.6); /* Oscurecer imagen para mejor contraste del texto */
}

.carousel-caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: var(--text-light);
width: 90%;
max-width: 800px;
}

.carousel-caption h2 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: var(--text-light);
}

.carousel-caption p {
font-size: 1.4rem;
margin-bottom: var(--spacing-md);
color: var(--text-light);
}

.carousel-caption .btn {
font-size: 1.1rem;
padding: 1rem 2.5rem;
}

.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 2rem;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
background-color: rgba(0,0,0,0.5);
border: none;
}

.next {
right: 0;
border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}

.carousel-dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 10;
}

.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
background-color: var(--primary-color);
}

/* --- Why Online Section --- */
.reasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-lg);
}

.reason-card {
background-color: var(--background-white);
padding: var(--spacing-md);
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* --- Estilos para las nuevas imágenes de las tarjetas de razón (16:9) --- */
.reason-card-img {
width: 160px; /* Ancho deseado para la imagen */
height: 90px;  /* Altura para mantener la proporción 16:9 (160 * 9 / 16 = 90) */
object-fit: cover; /* Asegura que la imagen cubra el área sin distorsión */
border-radius: 8px; /* Un poco de redondeo para que se vea más suave */
margin-bottom: 1rem;
display: block; /* Para que margin-left/right auto funcione y se centre */
margin-left: auto;
margin-right: auto;
box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sutil sombra para destacarlas */
}

/* Media query para ajustar el tamaño en móviles */
@media (max-width: 768px) {
.reason-card-img {
    width: 120px; /* Reducir ancho en móviles */
    height: 67.5px; /* Altura proporcional */
    border-radius: 5px;
}
}

.reason-card h3 {
color: var(--primary-dark);
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.reason-card p {
color: var(--text-medium);
font-size: 0.95rem;
}

/* --- Features / Benefits Section --- */
.feature-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-lg);
}

.feature-card {
background-color: var(--background-white);
padding: var(--spacing-md);
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
width: 70px;
height: 70px;
margin-bottom: 1rem;
filter: invert(61%) sepia(100%) saturate(1915%) hue-rotate(338deg) brightness(101%) contrast(101%); /* Color del icono */
}

.feature-card h3 {
color: var(--secondary-dark);
font-size: 1.4rem;
margin-bottom: 0.5rem;
}

.feature-card p {
color: var(--text-medium);
font-size: 0.95rem;
}

/* --- Plans Section --- */
.plans-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-md);
margin-top: var(--spacing-lg);
align-items: stretch; /* Asegura que las tarjetas tengan la misma altura */
}

.plan-card {
background-color: var(--background-white);
padding: var(--spacing-lg) var(--spacing-md);
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
border: 2px solid transparent;
}

.plan-card.featured {
border-color: var(--secondary-color);
transform: scale(1.03);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.plan-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.plan-card.featured:hover {
transform: scale(1.05);
}

.plan-card h3 {
color: var(--primary-dark);
font-size: 1.8rem;
margin-bottom: 1rem;
}

.plan-card .price {
font-family: var(--font-heading);
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 1.5rem;
}

.plan-card ul {
margin-bottom: 2rem;
text-align: left;
flex-grow: 1;
}

.plan-card ul li {
padding: 0.5rem 0;
color: var(--text-medium);
position: relative;
padding-left: 25px;
}

.plan-card ul li::before {
content: '✓';
color: var(--primary-color);
position: absolute;
left: 0;
font-weight: bold;
}

/* --- CTA Contact Section --- */
.section-cta {
padding: var(--spacing-lg) 0;
text-align: center;
background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
color: var(--text-light);
}

.section-cta h2 {
color: var(--text-light);
font-size: 2.5rem;
margin-bottom: 1rem;
}

.section-cta p {
font-size: 1.3rem;
margin-bottom: var(--spacing-lg);
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.section-cta .contact-info p {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: var(--text-light);
}
.section-cta .contact-info a {
color: var(--background-white);
text-decoration: underline;
}
.section-cta .contact-info a:hover {
color: var(--secondary-light);
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* --- Footer --- */
.footer {
background-color: var(--text-dark);
color: var(--text-light);
padding: var(--spacing-lg) 0;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--spacing-md);
}

.footer-brand .logo a {
color: var(--primary-color);
font-size: 1.5rem;
margin-bottom: 1rem;
}

.footer-brand p {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
}

.footer h4 {
color: var(--primary-light);
margin-bottom: 1rem;
font-size: 1.1rem;
}

.footer ul li {
margin-bottom: 0.5rem;
}

.footer a {
color: rgba(255,255,255,0.8);
font-size: 0.95rem;
}

.footer a:hover {
color: var(--primary-light);
text-decoration: underline;
}

.footer-social img {
width: 30px;
height: 30px;
margin-right: 10px;
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(27deg) brightness(108%) contrast(108%); /* Iconos blancos */
transition: filter 0.3s ease;
display: inline-block; /* Para que los iconos se alineen */
}

.footer-social img:hover {
filter: invert(79%) sepia(7%) saturate(2793%) hue-rotate(42deg) brightness(101%) contrast(101%); /* Color al hover */
}

/* --- Estilos para Páginas Internas (Restaurant/Business Example) --- */
.header-internal {
background-color: var(--background-white);
padding: 1.5rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
text-align: center;
}

.header-content-internal {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}

.back-to-home {
position: absolute;
left: var(--spacing-sm);
top: 50%;
transform: translateY(-50%);
color: var(--accent-color);
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
}
.back-to-home:hover {
color: var(--accent-hover);
}

.restaurant-logo, .business-logo {
font-family: var(--font-heading);
font-weight: 700;
font-size: 2.5rem;
color: var(--primary-dark);
margin-bottom: 0.5rem;
}

.restaurant-slogan, .business-slogan {
font-family: var(--font-body);
font-style: italic;
color: var(--text-medium);
font-size: 1.1rem;
}

.hero-restaurant, .hero-business {
height: 350px;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
position: relative;
color: var(--text-light);
}
.hero-overlay {
background-color: rgba(0,0,0,0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.hero-restaurant h2, .hero-business h2 {
color: var(--text-light);
font-size: 3rem;
margin-bottom: 1rem;
}
.hero-restaurant p, .hero-business p {
font-size: 1.3rem;
color: var(--text-light);
}

.restaurant-info-grid, .business-info-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--spacing-lg);
align-items: start;
}
@media (min-width: 768px) {
.restaurant-info-grid, .business-info-grid {
    grid-template-columns: 2fr 1fr;
}
}

.restaurant-details h3, .business-details h3 {
color: var(--primary-dark);
}
.restaurant-contact-details h3, .business-contact-details h3 {
color: var(--secondary-dark);
margin-bottom: 1rem;
}
.restaurant-contact-details p, .business-contact-details p {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.8rem;
color: var(--text-medium);
}
.restaurant-contact-details img, .business-contact-details img {
width: 20px;
height: 20px;
filter: invert(39%) sepia(91%) saturate(302%) hue-rotate(92deg) brightness(96%) contrast(89%); /* Iconos verdes */
}
.restaurant-contact-details a, .business-contact-details a {
color: var(--primary-dark);
}

.social-links {
margin-top: 1.5rem;
}
.social-links img {
width: 35px;
height: 35px;
margin-right: 15px;
filter: invert(39%) sepia(91%) saturate(302%) hue-rotate(92deg) brightness(96%) contrast(89%);
transition: filter 0.3s ease;
display: inline-block;
}
.social-links img:hover {
filter: invert(61%) sepia(100%) saturate(1915%) hue-rotate(338deg) brightness(101%) contrast(101%);
}

/* --- Menu/Product Categories Nav --- */
.menu-categories-nav, .product-categories-nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-bottom: var(--spacing-lg);
margin-top: var(--spacing-md);
}

.btn-category {
background-color: var(--background-white);
border: 1px solid var(--primary-light);
color: var(--primary-dark);
padding: 0.7rem 1.5rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
font-size: 0.95rem;
}
.btn-category:hover, .btn-category.active {
background-color: var(--primary-color);
color: var(--text-light);
text-decoration: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Menu/Product Sections --- */
.menu-section, .product-section {
margin-bottom: var(--spacing-lg);
}
.menu-section h3, .product-section h3 {
font-size: 2rem;
color: var(--primary-dark);
text-align: center;
margin-bottom: var(--spacing-md);
position: relative;
}
.menu-section h3::after, .product-section h3::after {
content: '';
display: block;
width: 60px;
height: 4px;
background-color: var(--secondary-color);
margin: 10px auto 0;
border-radius: 2px;
}

.menu-items-grid, .product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-md);
}

.menu-item-card, .product-item-card {
background-color: var(--background-white);
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-card:hover, .product-item-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.menu-item-img, .product-item-img {
width: 100%;
height: 200px;
object-fit: cover;
}

.menu-item-info, .product-item-info {
padding: 1.5rem;
flex-grow: 1; /* Para que el contenido ocupe el espacio restante */
display: flex;
flex-direction: column;
justify-content: space-between;
}

.menu-item-info h4, .product-item-info h4 {
font-size: 1.3rem;
color: var(--primary-dark);
margin-bottom: 0.5rem;
}

.menu-item-info p, .product-item-info p {
font-size: 0.95rem;
color: var(--text-medium);
margin-bottom: 1rem;
flex-grow: 1; /* Empuja el precio hacia abajo */
}

.menu-item-info .price, .product-item-info .price {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.4rem;
color: var(--secondary-color);
align-self: flex-end; /* Alinea el precio al final */
}

/* --- Footer Interno --- */
.footer-internal {
background-color: var(--background-light);
padding: var(--spacing-md) 0;
color: var(--text-medium);
font-size: 0.9rem;
border-top: 1px solid #e0e0e0;
}
.footer-internal a {
color: var(--primary-dark);
font-weight: 600;
}
.footer-internal a:hover {
color: var(--primary-color);
}

/* --- Responsive Design (Mobile First) --- */
@media (max-width: 768px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }

.header-content {
    flex-wrap: wrap;
    justify-content: center;
}
.logo {
    margin-bottom: 1rem;
    flex-basis: 100%;
    text-align: center;
}
.nav {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end; /* Alinea el botón de menú a la derecha */
}
.nav-toggle {
    display: flex; /* Mostrar el botón de hamburguesa */
}
.nav-list {
    display: none; /* Ocultar la lista de navegación por defecto */
    flex-direction: column;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%; /* Debajo del header */
    left: 0;
    padding: 1rem 0;
    border-radius: 5px;
}
.nav-list.active {
    display: flex; /* Mostrar cuando está activo */
}
.nav-list li {
    text-align: center;
    padding: 0.5rem 0;
}
.nav-list a {
    display: block;
    padding: 0.8rem 0;
    width: 100%;
    color: var(--text-dark);
}
.nav-list a:hover {
    background-color: var(--background-light);
}
.nav-list a::after {
    display: none; /* Ocultar subrayado en mobile */
}

.carousel-caption h2 {
    font-size: 2.2rem;
}
.carousel-caption p {
    font-size: 1.1rem;
}
.carousel-caption .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
}

.prev, .next {
    padding: 10px;
    font-size: 1.5rem;
}

.reasons-grid, .feature-cards-grid, .plans-grid {
    grid-template-columns: 1fr;
}

.plan-card.featured {
    transform: scale(1); /* No escalar en mobile */
}

.section-cta h2 {
    font-size: 2rem;
}
.section-cta p {
    font-size: 1.1rem;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}
.footer-brand, .footer-links, .footer-contact, .footer-social {
    margin-bottom: var(--spacing-md);
}
.footer-brand .logo {
    margin-bottom: 0.5rem;
}
.footer-links ul {
    padding: 0;
}
.footer-social {
    display: flex;
    justify-content: center;
}

/* Páginas internas */
.back-to-home {
    position: static;
    transform: none;
    margin-bottom: 1rem;
}
.header-content-internal {
    padding-top: var(--spacing-sm);
}
.restaurant-logo, .business-logo {
    font-size: 2rem;
}
.hero-restaurant h2, .hero-business h2 {
    font-size: 2.2rem;
}
.hero-restaurant p, .hero-business p {
    font-size: 1rem;
}

.restaurant-info-grid, .business-info-grid {
    grid-template-columns: 1fr;
}

.menu-categories-nav, .product-categories-nav {
    flex-direction: column;
    align-items: center;
}
.btn-category {
    width: 80%;
    max-width: 250px;
}

.menu-section h3, .product-section h3 {
    font-size: 1.6rem;
}
.menu-item-info h4, .product-item-info h4 {
    font-size: 1.2rem;
}
.menu-item-info .price, .product-item-info .price {
    font-size: 1.2rem;
}
}

/* Ajustes para pantallas más grandes que mobile, pero antes de desktop */
@media (min-width: 769px) and (max-width: 1024px) {
.container {
    padding: 0 var(--spacing-md);
}
.nav-list {
    gap: 1rem;
}
.carousel-caption h2 {
    font-size: 3rem;
}
.carousel-caption p {
    font-size: 1.2rem;
}
.reasons-grid, .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
}
.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.section-cta h2 {
    font-size: 2.2rem;
}
.footer-content {
    grid-template-columns: repeat(2, 1fr);
}
.footer-brand {
    grid-column: span 2;
    text-align: center;
}
.footer-links, .footer-contact, .footer-social {
    text-align: center;
}
.footer-social {
    display: flex;
    justify-content: center;
}

.hero-restaurant h2, .hero-business h2 {
    font-size: 2.5rem;
}
.menu-items-grid, .product-grid {
    grid-template-columns: repeat(2, 1fr);
}
}