/* Estilos para páginas de productos */
body {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);;
}
/* Hero Section */
.product-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.product-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    font-weight: 700;
}

.product-hero h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.product-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Product Description */
.product-description {
    padding: 60px 0;
}

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

.product-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-intro p {
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #003366;
}

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

.feature-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #003366;
}

/* Cost Example Section */
.cost-example {
    padding: 50px 30px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.cost-example h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #003366;
}

.example-container {
    max-width: 600px;
    margin: 0 auto;
}

.example-container p {
    text-align: center;
    margin-bottom: 30px;
}

.example-calculation {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calculation-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.calculation-item:last-child {
    border-bottom: none;
}

.calculation-label {
    font-weight: 600;
}

.calculation-value {
    font-weight: 700;
}

.calculation-item.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #003366;
    font-size: 1.2rem;
    color: #003366;
}

.calculation-item.insurance {
    color: #28a745;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #003366;
}

.services-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #003366;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #003366;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 30px;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
}

.benefit-icon {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.contact-info {
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Investment Options Section */
.investment-section {
    margin-bottom: 60px;
}

.investment-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #003366;
}

.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.investment-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.investment-header {
    background: linear-gradient(135deg, #003366, #004080);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investment-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.investment-rate {
    font-size: 2rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-content {
    padding: 25px;
}

.investment-content p {
    margin-bottom: 20px;
}

.investment-content ul {
    list-style: none;
    padding: 0;
}

.investment-content li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.investment-content li:before {
    content: "✓";
    color: #003366;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Support Section */
.support-section {
    background-color: #f0f4f8;
    padding: 50px 30px;
    border-radius: 10px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.support-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #003366;
}

.support-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003366, #004080);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Container */
.cta-container {
    background: linear-gradient(135deg, #003366, #004080);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 900px;
}

.cta-container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-container p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    max-width: 180px;
}

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

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #cbd5e1;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-example {
        padding: 30px 20px;
    }
    
    .example-calculation {
        padding: 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        height: 40vh;
    }
    
    .product-hero h1 {
        font-size: 2rem;
    }
    
    .product-hero .subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 20px;
    }
    
    .cta-button-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}