/* ========================================
   NeuroPrint - Stylesheet Premium
   ======================================== */

:root {
    --primary-teal: #1a9b8e;
    --primary-green: #2db896;
    --primary-pink: #e8837f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

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

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background-color: var(--primary-teal);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-teal);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-cart {
    position: relative;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    color: var(--primary-teal);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-pink);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 155, 142, 0.85) 0%, rgba(45, 184, 150, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-small {
    min-height: 350px;
    padding: 100px 20px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero específico por página */
.hero.hero-home {
    background-image: url('/img/hero-home.jpg');
}

.hero.hero-sobre {
    background-image: url('/img/hero-sobre.jpg');
}

.hero.hero-produtos {
    background-image: url('/img/hero-produtos.jpg');
}

.hero.hero-contato {
    background-image: url('/img/hero-contato.jpg');
}

/* ========================================
   Sections
   ======================================== */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-green));
    border-radius: 2px;
}

.values-section,
.featured-products,
.products-section,
.about-section,
.mission-section,
.differentials-section,
.contact-section,
.faq-section,
.guarantee-section,
.founders-section {
    padding: 80px 20px;
}

.values-section {
    background-color: var(--bg-light);
}

.about-section {
    background-color: var(--bg-light);
}

.founders-section {
    background-color: white;
}

.mission-section {
    background-color: var(--bg-light);
}

.differentials-section {
    background-color: white;
}

.contact-section {
    background-color: white;
}

.faq-section {
    background-color: var(--bg-light);
}

.guarantee-section {
    background-color: white;
}

/* ========================================
   Cards
   ======================================== */

.values-grid,
.products-grid,
.founders-grid,
.mission-grid,
.differentials-grid,
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.value-card,
.product-card,
.founder-card,
.mission-card,
.differential-item,
.guarantee-item {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.value-card:hover,
.product-card:hover,
.founder-card:hover,
.mission-card:hover,
.differential-item:hover,
.guarantee-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.value-icon,
.differential-icon {
    font-size: 48px;
    color: var(--primary-teal);
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon,
.differential-item:hover .differential-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   Products
   ======================================== */

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-filter select {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-filter select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(26, 155, 142, 0.1);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), #f5a19f);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.product-rating {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.product-rating i {
    color: #ffc107;
}

.product-rating span {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 4px;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
    margin-right: 12px;
}

.discount-price {
    color: var(--primary-pink);
    font-size: 28px;
    font-weight: 700;
}

.section-footer {
    text-align: center;
    margin-top: 32px;
}

/* ========================================
   Founders
   ======================================== */

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.founders-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.founder-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.founder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.1) 100%);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-role {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-bio {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Mission Cards
   ======================================== */

.mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.mission-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.mission-card h3 i {
    font-size: 32px;
}

/* ========================================
   Differentials
   ======================================== */

.differentials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.differential-item {
    text-align: center;
}

.differential-icon {
    display: block;
    margin: 0 auto 16px;
}

.guarantee-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.guarantee-item {
    text-align: center;
}

.guarantee-item i {
    font-size: 48px;
    color: var(--primary-teal);
    margin-bottom: 16px;
    display: block;
}

/* ========================================
   Forms
   ======================================== */

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

.contact-info {
    padding-right: 24px;
}

.contact-item {
    margin-bottom: 32px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: white;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    color: var(--primary-teal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(26, 155, 142, 0.1);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   FAQ
   ======================================== */

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

.faq-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    cursor: pointer;
    padding: 20px;
    margin: 0;
    background-color: white;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h4 i {
    transition: transform 0.3s ease;
    color: var(--primary-teal);
}

.faq-item h4:hover {
    background-color: var(--bg-light);
    color: var(--primary-teal);
}

.faq-item p {
    padding: 0 20px 20px 52px;
    margin: 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-green) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-teal);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
}

.newsletter-form button {
    padding: 12px 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav {
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        padding-right: 0;
    }

    .values-grid,
    .products-grid,
    .founders-grid,
    .mission-grid,
    .differentials-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 8px 0;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }

    .values-section,
    .featured-products,
    .products-section,
    .about-section,
    .mission-section,
    .differentials-section,
    .contact-section,
    .faq-section,
    .guarantee-section,
    .founders-section {
        padding: 40px 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .founder-image {
        height: 350px;
    }
}

/* ========================================
   Badges e Destaque de Desconto
   ======================================== */

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E76F51;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 111, 81, 0.3);
    z-index: 10;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.product-price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-price-discount {
    font-size: 24px;
    font-weight: 700;
    color: #2A9D8F;
}

.product-savings {
    font-size: 13px;
    color: #E76F51;
    font-weight: 600;
    background: rgba(231, 111, 81, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ========================================
   FAQ Melhorado
   ======================================== */

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: #2A9D8F;
}

.faq-item h4 {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    user-select: none;
    transition: color 0.3s ease;
}

.faq-item h4:hover {
    color: #2A9D8F;
}

.faq-item h4 i {
    font-size: 14px;
    color: #2A9D8F;
    transition: transform 0.3s ease;
}

.faq-item p {
    margin-top: 15px;
    padding-left: 26px;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Cart Badge Atualizado
   ======================================== */

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E76F51;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ========================================
   Melhorias de Produto Card
   ======================================== */

.product-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* ========================================
   Newsletter Melhorado
   ======================================== */

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #2A9D8F;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.newsletter-form button {
    padding: 12px 24px;
    background: #2A9D8F;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1a9b8e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

/* ========================================
   Responsividade
   ======================================== */

@media (max-width: 768px) {
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .faq-item p {
        padding-left: 0;
    }
}


/* ========================================
   Seção de Produtos Personalizados
   ======================================== */

.custom-products-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5f3 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.custom-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.custom-product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.custom-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.custom-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2A9D8F 0%, #1a9b8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.custom-product-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.custom-product-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-price {
    display: inline-block;
    background: rgba(42, 157, 143, 0.1);
    color: #2A9D8F;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.custom-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.custom-cta p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ========================================
   Responsividade para Produtos Personalizados
   ======================================== */

@media (max-width: 768px) {
    .custom-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .custom-product-card {
        padding: 30px 20px;
    }
    
    .custom-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


/* ========================================
   Seção de Destaque Personalizado (Home)
   ======================================== */

.custom-highlight {
    background: linear-gradient(135deg, #2A9D8F 0%, #1a9b8e 100%);
    padding: 80px 0;
    color: white;
}

.custom-highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-highlight-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.custom-highlight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.custom-list li {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-list i {
    color: #E8F5F3;
    font-size: 20px;
}

.custom-highlight-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Seção de Features/Diferenciais
   ======================================== */

.features-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2A9D8F;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2A9D8F 0%, #1a9b8e 100%);
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   CTA Center
   ======================================== */

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Responsividade
   ======================================== */

@media (max-width: 768px) {
    .custom-highlight-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .custom-highlight-text h2 {
        font-size: 28px;
    }
    
    .custom-highlight-text p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
