/*
Theme Name: Kinta Marketplace
Description: Tema completo para marketplace de produtos locais portugueses com sistema de avaliações, rastreamento e programa de fidelidade Folhas Kinta.
Author: Kinta Team
Version: 1.0.0
License: GPL v2 or later
Text Domain: kinta
*/

/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #6b8e23;
    --secondary-green: #8fbc8f;
    --accent-green: #9acd32;
    --text-dark: #2c3e50;
    --text-medium: #7f8c8d;
    --text-light: #bdc3c7;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles with Pulsing K */
.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* Pulsing effect for the K in logo */
@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(107, 142, 35, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(107, 142, 35, 0.6));
    }
}

.logo-image {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Navigation Styles */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation a.current {
    color: var(--primary-green);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-contact {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-contact:hover {
    background: #5a7a2a;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('mesa-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.8) 0%, rgba(143, 188, 143, 0.6) 100%);
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem !important;
  color: #dddddd !important;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 18px 36px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #5a7a2a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Section Styles */
.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-mission {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.about-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.about-link:hover {
    border-bottom-color: var(--primary-green);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-container {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 400px;
}

.search-container input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.filter-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-container select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-container select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-takeaway {
    background: #e8f5e8;
    color: var(--primary-green);
}

.badge-region {
    background: #f0f8ff;
    color: #4682b4;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-producer {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.product-producer strong {
    color: var(--text-dark);
}

/* Rating System */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-product {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-view {
    background: var(--primary-green);
    color: var(--white);
}

.btn-view:hover {
    background: #5a7a2a;
}

/* Producer Registration Section */
.producer-registration-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.producer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Producer Levels */
.producer-levels {
    margin: 50px 0;
}

.producer-levels h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.level-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.level-card.bronze::before {
    background: #cd7f32;
}

.level-card.silver::before {
    background: #c0c0c0;
}

.level-card.gold::before {
    background: #ffd700;
}

.level-card.platinum::before {
    background: linear-gradient(45deg, #e5e4e2, #b8b8b8);
}

.level-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.level-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.level-requirement {
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.level-commission {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.level-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.level-features span {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-align: left;
}

/* Customer Registration Section */
.customer-registration-section {
    padding: 100px 0;
    background: var(--white);
}

.customer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.option-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.option-card.guest {
    border-color: #6c757d;
}

.option-card.member {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.option-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.option-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.option-card ul li {
    padding: 8px 0;
    color: var(--text-medium);
    border-bottom: 1px solid #f0f0f0;
}

.option-card ul li:last-child {
    border-bottom: none;
}

/* Tracking Section */
.tracking-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.tracking-search {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-form .form-group {
    margin-bottom: 0;
}

.tracking-form .form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.tracking-form .form-group input {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-sizing: border-box;
}

.tracking-form .form-group input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
    outline: none;
}

.tracking-form .form-group small {
    display: block;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-top: 8px;
}

.tracking-form button {
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    align-self: center;
    min-width: 200px;
}

/* Order Card */
.order-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.order-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.in-preparation {
    background: #fff3cd;
    color: #856404;
}

.order-status.ready-pickup {
    background: #d4edda;
    color: #155724;
}

.order-status.delivered {
    background: #d1ecf1;
    color: #0c5460;
}

/* Order Details */
.order-details {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Timeline */
.order-timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 45px;
    width: 2px;
    height: 40px;
    background: #e0e0e0;
}

.timeline-item.completed::after {
    background: var(--primary-green);
}

.timeline-item.active::after {
    background: linear-gradient(to bottom, var(--primary-green) 50%, #e0e0e0 50%);
}

.timeline-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-green);
    color: var(--white);
}

.timeline-item.active .timeline-icon {
    background: #ffc107;
    color: var(--white);
    animation: pulse 2s infinite;
}

.timeline-item.pending .timeline-icon {
    background: #e0e0e0;
    color: var(--text-medium);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 5px;
    line-height: 1.4;
}

.timeline-content small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.order-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--text-medium);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-container {
        max-width: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .customer-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tracking-search {
        margin: 0 20px 40px 20px;
        padding: 25px;
    }
    
    .tracking-form button {
        min-width: auto;
        width: 100%;
    }
    
    .order-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .benefit-card,
    .option-card {
        padding: 25px;
    }
}

@media (min-width: 1400px) {
    .logo-image {
        height: 90px;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* ✅ Aplica para todos os tamanhos */
/* Hero Section - imagem e estilo mobile corrigido */
.hero-section {
  background-image: url('mesa-background.jpg');
  position: relative;
z-index: 1;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/wp-content/themes/kinta-wordpress-theme-1/mesa-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}


  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ✅ Apenas ajuste extra, se precisar (sem repetir background-image) */
@media screen and (max-width: 768px) {
  .hero-section {
    padding-top: 80px; /* exemplo de ajuste opcional */
  }
}

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons a {
        margin: 0.5rem auto;
        display: block;
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 20px;
    background-position: center;
    background-size: cover;
    background-attachment: scroll; /* evita travamento no mobile */
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
  }
}
