/*
Theme Name: Hortifruti Master Template
Theme URI: https://sistemasacolao.com.br
Description: Modelo de website premium para lojas de Hortifruti (Sacolão). Focado em frescor, cores vibrantes e integração com delivery.
Author: Antigravity AI
Author URI: https://sistemasacolao.com.br
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hortifruti-master
*/

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --orange-accent: #e67e22;
    --yellow-bright: #f1c40f;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f9fdf9;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--dark-green);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- COMPONENTS --- */

/* Premium Button (Delivery) */
.btn-delivery {
    background: linear-gradient(135deg, var(--orange-accent), #f39c12);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 15px rgba(230, 126, 34, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-delivery.lg { padding: 18px 45px; font-size: 1.1rem; }

.btn-delivery:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(230, 126, 34, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
}

.btn-outline:hover { background: var(--primary-green); color: white; }

/* Grid Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.max-800 { max-width: 800px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }

/* --- SECTIONS --- */

/* HERO */
.hero { background: linear-gradient(180deg, #f0fff4 0%, var(--bg-light) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; color: #1b4d3e; }
.hero-content p { font-size: 1.25rem; color: #4a5568; margin-bottom: 3.5rem; max-width: 600px; line-height: 1.6; }
.text-highlight { color: var(--primary-green); position: relative; }
.badge { background: #dcfce7; color: var(--dark-green); padding: 8px 16px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; }

/* TEAM SECTION */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.team-card { padding: 30px; transition: var(--transition); border-radius: var(--radius-lg); background: #f9fbf9; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid white; box-shadow: var(--shadow-soft); }
.team-card h3 { color: var(--dark-green); margin-bottom: 5px; font-size: 1.2rem; }
.team-card span { color: var(--primary-green); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }

/* STEPS (DELIVERY) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step-card { border-radius: var(--radius-lg); padding: 40px 30px; position: relative; overflow: hidden; }
.step-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.step-card h3 { margin-bottom: 15px; font-size: 1.5rem; }

/* FEATURES list */
.feature-list { list-style: none; margin-top: 30px; }
.feature-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; }

/* FOOTER */
.site-footer { background: #1b4d3e; color: white; padding-bottom: 40px; }
.site-footer h3, .site-footer h4 { color: white; margin-bottom: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; color: #a8d5ba; }
.footer-bottom hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 30px 0; }

/* NAVIGATION */
.site-header .custom-logo-link img,
.site-header .custom-logo {
    max-height: 80px;
    width: auto;
    display: block;
}

.nav-menu ul {
 list-style: none; display: flex; gap: 25px; font-weight: 600; color: #1b4d3e; }
.nav-menu li:hover { color: var(--primary-green); }

/* RESPONSIVENESS */
@media (max-width: 991px) {
    .hero-grid, .grid-2, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content { text-align: center; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline { margin-left: 0; }
}
