/* Fyt Suplementos - Style CSS */

:root {
    --primary-color: #d35400; /* Laranja Forte Performance */
    --secondary-color: #1a1a1a; /* Preto Moderno */
    --accent-color: #e67e22;
    --text-color: #444;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
    transition: var(--transition);
}

img:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scroll {
    padding: 12px 0;
}

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

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

#menu {
    display: flex;
    gap: 35px;
}

#menu a {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

#menu a:hover {
    color: var(--primary-color);
}

#btn-mobile {
    display: none;
}

/* Hero */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f4f4f4 0%, #e9e9e9 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #666;
}

/* About */
.about {
    padding: 100px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Products */
.products {
    padding: 100px 0;
    background: var(--white);
}

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

.section-title h2 {
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card img {
    margin-bottom: 25px;
}

.product-card h3 {
    margin-bottom: 15px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-list {
    margin-top: 40px;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    height: 160px;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 50px 0;
    text-align: center;
}

.footer-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .about .container, .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-image { order: -1; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    #btn-mobile {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    #hamburger {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--secondary-color);
        position: relative;
    }
    
    #hamburger::before, #hamburger::after {
        content: '';
        display: block;
        width: 25px;
        height: 2px;
        background: var(--secondary-color);
        position: absolute;
        transition: 0.3s;
    }
    
    #hamburger::before { top: -8px; }
    #hamburger::after { bottom: -8px; }
    
    #nav.active #hamburger { background: transparent; }
    #nav.active #hamburger::before { transform: rotate(135deg); top: 0; }
    #nav.active #hamburger::after { transform: rotate(-135deg); bottom: 0; }
    
    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 80px;
        right: 0;
        background: var(--white);
        height: 0;
        transition: 0.6s;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
    }
    
    #nav.active #menu {
        height: calc(100vh - 80px);
        visibility: visible;
        overflow-y: auto;
    }
    
    #menu li {
        padding: 1.5rem 0;
        margin: 0 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}
