/* styles.css */
:root {
    --primary-color: #19284C;
    --secondary-color: #00A86B;
    --light-color: #F8F9FA;
    --dark-color: #343A40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 50px;
}

.navbar-brand {
    font-weight: 700;
    color: white;
    font-size: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #008a56;
    border-color: #008a56;
    transform: translateY(-2px);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.services-section, .about-section, .contact-section, .faq-section, .testimonials-section {
    padding: 60px 0;
}

.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Estilos de Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 40px 0 10px;
    border-top: 5px solid var(--secondary-color);
}

.footer h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-contact-info a, .footer-links a {
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info p {
    margin-bottom: 8px;
}

.footer-contact-info i {
    color: var(--secondary-color);
}

.footer-links a:hover, .footer-contact-info a:hover {
    color: white;
}

.copyright {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
}

/* Iconos grandes */
.icon-large {
    font-size: 3rem;
}

/* Estilos para la sección de testimonios */
.testimonio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rating-stars {
    font-size: 1.2rem;
}

/* Estilos para los botones de contacto */
.btn-contacto {
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-contacto:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Estilos para el código de formato */
.code-format {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Courier New', monospace;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

/* Animaciones suaves */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .btn-contacto {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .testimonio-card {
        margin-bottom: 20px;
    }
    
    .logo-img {
        height: 80px;
    }
}

/* Pricing Card Styles */
.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.pricing-card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 14px 14px 0 0;
}

/* Contact Section Styles */
.contact-form-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    background-color: white;
}

.contact-info-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-card p {
    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

/* FAQ Section Styles */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--secondary-color);
    box-shadow: none;
}