/*
Theme Name: TabacoDeLiarKilo.com
Author: TabacoDeLiarKilo.com
Description:  Venta de tabaco por kilos natural y organico
*/

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

:root {
    --primary-color: #2d3436;
    --accent-color: #27ae60;
    --secondary-color: #e67e22;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* HEADER */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    font-size: 14px;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('hero-natural.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* PRICING */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.price-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.price-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 15px 0;
}

/* CONTENT */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .header-content { flex-direction: column; gap: 15px; }
}
