:root {
    --primary: #eb8e24;
    --secondary: #ffffff;
    --text: #111212;
    --bg-light: #f9f9f9;
    --bg-dark: #222222;
    --dim-text: #666666;
    --white: #ffffff;
    --max-width: 1200px;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.text-white-dim {
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: #d67d1b;
    border-color: #d67d1b;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text);
    color: var(--text);
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: var(--text);
    color: var(--white);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-block;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--dim-text);
    margin-bottom: 2rem;
}

/* Features */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Services */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--dim-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* About */
.about-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

/* Locations */
.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.location-list li {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
}

/* FAQ */
.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.faq-item p {
    color: var(--dim-text);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

/* Placeholders */
.image-placeholder {
    background-color: #e0e0e0;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed #999;
}

.prompt-text {
    font-family: monospace;
    color: #555;
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === Imagenes hero / about recortadas en mobile, sin deformar === */
.hero-image,
.about-image {
    position: relative;
}

/* En mobile recortamos el cuadrado a una proporción más horizontal,
   sin estirar ni achatar la imagen (se usa object-fit: cover). */
@media (max-width: 768px) {
    .hero-image,
    .about-image {
        aspect-ratio: 4 / 3; /* podés cambiar a 16 / 9 si querés más recorte */
        overflow: hidden;
    }

    .hero-image img,
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
