/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Banner */
.banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Conteúdo principal */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Seção de texto/descrição */
.text-content {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-imagen {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
}

.text-content h2 {
    color: #2e7d32;
    font-size: 28px;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Separador */
.separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #f9a825, transparent);
    margin: 40px 0;
}

/* Detalhes do produto / Ventajas */
.product-details {
    margin-bottom: 40px;
}

.product-details h2 {
    color: #2e7d32;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.ventajas-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.ventajas-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ventajas-content ul {
    flex: 1;
    min-width: 300px;
    list-style: none;
}

.ventajas-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.ventajas-content ul li:last-child {
    border-bottom: none;
}

.ventajas-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f9a825;
    font-weight: bold;
    font-size: 18px;
}

/* Indicações de uso */
.usage-instructions {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.usage-instructions h2 {
    color: #2e7d32;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.usage-instructions ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.usage-instructions ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.usage-instructions ul li:last-child {
    border-bottom: none;
}

.usage-instructions ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 20px;
}

.usage-instructions p {
    font-size: 16px;
    color: #555;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

.usage-instructions p.contacto {
    text-align: center;
    font-style: italic;
    margin-top: 20px;
    color: #666;
}

/* CTA Consultor */
.cta-consultor {
    text-align: center;
    margin: 40px 0;
}

.btn-consultor {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.5px;
}

.btn-consultor:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    transform: translateY(-2px);
}

/* Modal Consultor */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    color: #2e7d32;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content input[type="email"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="tel"]:focus,
.modal-content input[type="email"]:focus {
    border-color: #2e7d32;
    outline: none;
}

.modal-promocoes {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
}

.modal-promocoes input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.modal-promocoes label {
    font-size: 12px;
    font-weight: normal;
    color: #555;
    line-height: 1.4;
}

.modal-content button[type="submit"] {
    background: #2e7d32;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 5px;
}

.modal-content button[type="submit"]:hover:not(:disabled) {
    background: #1b5e20;
}

.modal-content button[type="submit"]:disabled {
    background: #a5d6a7;
    cursor: not-allowed;
}

/* Responsivo */
@media (max-width: 768px) {
    .titulo-imagen {
        max-width: 280px;
    }

    .text-content h2,
    .product-details h2,
    .usage-instructions h2 {
        font-size: 24px;
    }

    .text-content p,
    .ventajas-content ul li,
    .usage-instructions p,
    .usage-instructions ul li {
        font-size: 15px;
    }

    .ventajas-content {
        flex-direction: column;
        align-items: center;
    }

    .ventajas-image {
        max-width: 100%;
    }

    .ventajas-content ul {
        min-width: 100%;
    }

    .usage-instructions {
        padding: 25px 20px;
    }

    .content {
        padding: 25px 15px;
    }

    .btn-consultor {
        padding: 14px 30px;
        font-size: 16px;
    }

    .modal-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .titulo-imagen {
        max-width: 220px;
    }

    .text-content h2,
    .product-details h2,
    .usage-instructions h2 {
        font-size: 20px;
    }

    .text-content p,
    .ventajas-content ul li,
    .usage-instructions p,
    .usage-instructions ul li {
        font-size: 14px;
    }
}