/* === CSS RESET & VARIABLES === */
:root {
    --primary-color: #FF6B00; /* Laranja D'Angelo */
    --secondary-color: #ffffff;
    --text-main: #1C1C1C; /* Dark Gray */
    --text-light: #5A5A5A;
    --bg-light: #F4F4F4;
    --border-color: #E0E0E0;
    
    --font-sans: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --header-height: 120px;
    --top-bar-height: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === TOP BAR === */
.top-bar {
    background-color: var(--text-main);
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--top-bar-height);
    font-size: 0.85rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === MAIN HEADER === */
.main-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
}

.logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transform: scale(1.1);
    transform-origin: left center;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    font-size: 1.8rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: var(--primary-color);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.hero-content {
    padding: 0 5%;
    max-width: 800px;
    color: var(--secondary-color);
}

.showcase-title h2 {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #E66000;
}

/* === HIGHLIGHTS SECTION === */
.highlights-section {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* === FEATURED SECTION === */
.featured-section {
    padding: 80px 5%;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-main);
}

.featured-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-actions {
    padding: 20px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-whatsapp-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    background-color: #25D366;
    color: #fff;
    padding: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp-action:hover {
    background-color: #1EBE5D;
}

/* === FOOTER === */
.main-footer {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--text-main);
    color: var(--secondary-color);
}

.footer-content h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-content p i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
}

/* === MOBILE MENU === */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: var(--text-main);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 2000;
    padding: 80px 30px;
    transition: left 0.3s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-main);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header-content { justify-content: flex-start; gap: 20px; }
    .header-icons { margin-left: auto; }
    
    .showcase-title h2 { font-size: 3rem; }
    
    .highlight-grid { grid-template-columns: 1fr; }
    
    .featured-product-grid { grid-template-columns: 1fr; }
}
