/* =============================================
   RESET STOREFRONT - Ocultar elementos base
   ============================================= */

.site-header,
.site-footer,
#colophon,
.storefront-handheld-footer-bar {
    display: none !important;
}

.widget-area,
#secondary {
    display: none !important;
}

.entry-header,
.entry-title,
.page-title,
.edit-link,
.post-edit-link,
.breadcrumb {
    display: none !important;
}

#main,
#primary,
.site-main {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

.elementor-page .entry-content,
.elementor {
    display: block !important;
}

/* =============================================
   GLOBAL
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2e1a;
}

/* =============================================
   INICIO - HERO
   ============================================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-left {
    flex: 1 1 50%;
    max-width: 540px;
}

.badges {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #3a3a3a;
    background: #fff;
    border: 1px solid #dde8dd;
    border-radius: 20px;
    padding: 5px 14px;
}

.badge-icon {
    font-size: 0.8rem;
}

.badge-divider {
    width: 1px;
    height: 28px;
    background: #c5d5c5;
    margin: 0 -1px;
    position: relative;
    z-index: 0;
}

.badge:first-child { border-radius: 20px 0 0 20px; }
.badge:last-child  { border-radius: 0 20px 20px 0; }

.hero-headline {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.12;
    color: #152215;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero-headline .green { color: #2d7a3a; }

.hero-sub {
    font-size: 0.97rem;
    line-height: 1.65;
    color: #4a5a4a;
    margin-bottom: 36px;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #152215;
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 7px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.btn-primary:hover { background: #2d7a3a; }

.btn-secondary {
    background: transparent;
    color: #152215;
    border: 1.5px solid #b0c4b0;
    padding: 14px 26px;
    border-radius: 7px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: #2d7a3a;
    color: #2d7a3a;
}

.hero-right {
    flex: 1 1 42%;
    max-width: 420px;
    position: relative;
}

.photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.photo-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/4.6;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/4.6;
    background: linear-gradient(145deg, #c8dbc8 0%, #a0bfa0 60%, #7aaa8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-overlay {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.quote-overlay p {
    font-size: 0.82rem;
    color: #1a2e1a;
    line-height: 1.55;
    margin-bottom: 6px;
}

.quote-source {
    font-size: 0.75rem;
    color: #2d7a3a;
    font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 28px 28px 48px;
    }

    .hero-left  { max-width: 100%; }
    .hero-right { max-width: 100%; width: 100%; }
}

@media (max-width: 480px) {
    .hero { padding: 20px 18px 40px; gap: 28px; }
    .hero-headline { font-size: 1.85rem; }
    .btn-primary,
    .btn-secondary { padding: 12px 20px; font-size: 0.88rem; }
}