/* Estilos generales */
:root {
    --primary-color: #6b0000;
    --secondary-color: #ffd700;
    --accent-color: #00c853;
    --dark-bg: #0b3b4e;
    --light-bg: #f8f9fa;
    --text-light: #ffffff;
    --text-dark: #333333;
    --arrow-bg-color: #6b0000; /* Color de fondo de las flechas del acordeón */
    --arrow-icon-color: #ffffff; /* Color del icono de las flechas del acordeón */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}



/* Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a1786;
    border-color: #5a1786;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #00b34a;
    border-color: #00b34a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Servicios Section */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-container {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.plan-price-sm {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-period-sm {
    font-size: 0.8rem;
    color: #777;
}

.plan-features-sm {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.plan-features-sm li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.plan-features-sm li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contacto Section */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
}

.contact-card {
    text-align: center;
}
.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.whatsapp-icon {
    color: #25D366;
}

.email-icon {
    color: #EA4335;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px 0 10px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Planes Section */
.plan-card {
    border-radius: 15px;
    border: solid 1px #ff0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.plan-period {
    font-size: 0.9rem;
    color: #777;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.plan-features li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-code {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
}

.btn-plan {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 30px;
}

/* Detalle Servicio Section */
.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 100%;
    text-align: center;
}

.detalle-servicio{
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
}

#detalles-servicio h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

#detalles-servicio p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: #fff;
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px;
}

/* Personalizar las flechas del acordeón con fondo circular */
.accordion-button::after {
    content: '+';
    background-image: none;
    background-color: var(--arrow-bg-color);
    color: var(--arrow-icon-color);
    font-size: 1rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    background-color: var(--arrow-bg-color);
    color: var(--arrow-icon-color);
    transform: none;
}

/* Hover effect para las flechas */
.accordion-button:hover::after {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Focus effect */
.accordion-button:focus::after {
    box-shadow: 0 0 0 3px rgba(107, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-color: var(--primary-color);
    border-radius: 50%;
    background-position: center;
    background-size: 12px;
    width: 24px;
    height: 24px;
}

.accordion-body {
    padding: 20px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
    }
}
