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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: #0066cc;
}

ul {
    list-style: none;
}

/* Barra superior */
.top-banner {
    background-color: #005a87;
    color: white;
    padding: 10px 0;
}

.top-banner .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner-item {
    margin-right: 20px;
    font-size: 1rem;
}

.banner-item i {
    margin-right: 5px;
}

/* Cabecera */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #005a87;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0066cc;
}

.btn-order-nav {
    background-color: #0066cc;
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-order-nav:hover {
    background-color: #004c99;
}

/* Sección Hero */
.hero {
    background-color: #e6f2ff;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #005a87;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-order {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-order:hover {
    background-color: #004c99;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 130px;
    background-color: #e63946;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sección de Beneficios */
.benefits {
    padding: 80px 0;
    background-color: #fff;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #005a87;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #333;
}

/* Sección de Producto */
.product {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.product h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #005a87;
}

.product-info {
    max-width: 900px;
    margin: 0 auto;
}

.product-info > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.detail-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.detail-item h3 {
    margin-bottom: 20px;
    color: #005a87;
    font-size: 1.3rem;
}

.detail-item ul {
    margin-left: 20px;
}

.detail-item ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.product-table {
    margin-top: 50px;
}

.product-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.product-table th,
.product-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.product-table th {
    background-color: #005a87;
    color: white;
    font-weight: normal;
    width: 30%;
}

.rating {
    color: #ffc107;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
}

.current-price {
    font-weight: bold;
    color: #e63946;
    font-size: 1.2rem;
}

/* Sección de Testimonios */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #005a87;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    text-align: right;
    color: #666;
}

/* Sección de Preguntas Frecuentes */
.faq {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #005a87;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #005a87;
    font-size: 1.3rem;
}

/* Sección de Formulario de Pedido */
.order-form {
    padding: 80px 0;
    background-color: #fff;
}

.order-form h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #005a87;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.order-form form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-submit {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #004c99;
}

.payment-methods {
    margin-top: 30px;
    text-align: center;
}

.payment-methods p {
    margin-bottom: 10px;
    color: #666;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    color: #666;
}

/* Sección de Contacto */
.contact {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #005a87;
}

.contact-grid {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Pie de página */
footer {
    background-color: #005a87;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Encabezado de página */
.page-header {
    background-color: #005a87;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Sección de Contenido */
.content-section {
    padding: 60px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    text-align: right;
    color: #777;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #005a87;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1rem;
}

.policy-section ul li {
    list-style-type: disc;
}

.policy-section ol li {
    list-style-type: decimal;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-banner .container {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-item {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    
    nav ul li {
        margin-bottom: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .benefits-grid,
    .testimonial-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
}