
/* Variables de color */
:root {
    --primary-color: #0F6CBD;
    --secondary-color: #FFCE01;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --accent-color: #E74C3C;
    --text-color: #333333;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gray: #ECF0F1;
    --success-color: #27AE60;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

hr.azul {
color: #3fADD0;
background-color: #3fADD0;
height: 1px;
width: 100%;
border: 0;
}

/* Añade esto al archivo CSS */
ul[style*="list-style-image"] {
    padding-left: 25px; /* Espacio para la viñeta */
    margin-left: 0;     /* Elimina el margen por defecto */
}

ul[style*="list-style-image"] li {
    padding-left: 5px; /* Espacio entre viñeta y texto */
    margin-bottom: 0px; /* Separación entre items */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra superior */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-left: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container img {
    height: 60px;
    width: auto;
}

/* Navegación */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 15px;
    position: relative;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.main-nav a i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: var(--gray);
}

.main-nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
}

.cta-button:hover {
    background-color: #C0392B !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Banner */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 75px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-button:hover {
    background-color: #0D5BA4;
    transform: translateY(-2px);
}

.primary-button, .secondary-button {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-button.small-button {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.primary-button.large-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.primary-button.large-button:hover {
    background-color: var(--white);
}


.secondary-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Contenido principal */
.main-content {
    padding: 60px 0;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 10px;
}


.footer-column h3 {
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    margin-bottom: 15px;
    color: var(--gray);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: var(--gray);
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info span {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}









/* Estilos específicos para la página de Mantenimiento */

/* Sección de servicios */
.services-section {
    padding: 10px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.8rem;
    padding: 10px;
    text-align: center;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 20px;
    font-size: 1.4rem;
    color: var(--dark-color);
    text-align: center;
    margin: 0;
}

.service-content {
    padding: 0 20px 20px;
}

.service-image {
    width: 75%;
	/*aspect-ratio: 1/1;   Relación cuadrada (igual ancho y alto) */
    /*height: 200px;*/
    object-fit: cover;
    border-radius: 4px;
    /*margin-bottom: 15px;*/

	margin: 0 auto 15px; /* Centrado horizontal con margen inferior */
	display: block; /* Fundamental para que funcione margin auto */
}

.service-text {
    line-height: 1.7;
    color: var(--text-color);
}

service-image-container {
    display: flex;
    justify-content: center; /* Centrado horizontal */
    padding: 0 20px; /* Mismo padding que el contenido */
    margin-bottom: 15px;
}


/* Sección de beneficios */
.benefits-section {
    padding: 60px 0;
    background-color: var(--gray);
    margin: 60px 0;
    text-align: center;
}

.benefits-section h2 {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* Sección CTA */
.cta-section {
    background-color: var(--primary-color);
	/*background-color: var(--primary-color);*/
    color: var(--white);
	padding: 40px 0;
	text-align: center;
	border-radius: 8px;
	margin: 60px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
	color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}









/* Estilos específicos para la página de Redes */



/* Sección de características */
.features-section {
    padding: 80px 0;
    background-color: #f8fafc;
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary-color);
    transform: rotate(10deg) scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sección de tecnologías */
.technology-section {
    padding: 60px 0;
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.1);
}

.tech-item img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.tech-item span {
    font-weight: 500;
    color: var(--dark-color);
}


/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-grid {
        gap: 30px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        width: 40%;
    }
}









/* Estilos específicos para la página de Software */



/* Sección de proceso */
.process-section {
    padding: 80px 0;
    background-color: #f8fafc;
    margin: 60px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    z-index: 1;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 108, 189, 0.3);
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.process-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sección de tecnologías */
.technologies-section {
    padding: 60px 0;
}

.tech-tabs {
    margin-top: 50px;
}

.tech-tab-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.tech-tab-link {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.tech-tab-link:hover {
    color: var(--primary-color);
    background-color: rgba(15, 108, 189, 0.1);
}

.tech-tab-link.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.tech-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tech-item img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.tech-item span {
    font-weight: 500;
    color: var(--dark-color);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .process-steps::before {
        left: 35px;
    }
    
    .process-item {
        gap: 20px;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .tech-item img {
        height: 50px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .process-steps::before {
        display: none;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-tab-header {
        justify-content: center;
    }
}









/* Estilos específicos para la página de Reparaciones */

/* Grid de reparaciones */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.repair-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.repair-icon {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.repair-card:hover .repair-icon {
    background-color: var(--secondary-color);
}

.repair-content {
    padding: 20px;
    flex-grow: 1;
}

.repair-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
}

.repair-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.repair-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.repair-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.repair-list li:last-child {
    border-bottom: none;
}

/* Descripción de reparaciones */
.repair-description {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.repair-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.7;
}

/* Sección de marcas */
.brands-section {
    padding: 60px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .repair-description {
        flex-direction: column;
    }
    
    .diagnostic-content {
        flex-direction: column;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .repair-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}









/* Estilos específicos para la página de Soporte */

/* Grid de soporte */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    background-color: var(--secondary-color);
}

.support-content {
    padding: 20px;
    flex-grow: 1;
}

.support-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.support-content p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.support-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.support-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.support-list li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.8rem;
}

.support-list li:last-child {
    border-bottom: none;
}

/* Descripción de soporte */
.support-description {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.support-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-text {
    flex: 1;
    min-width: 300px;
}

/* Planes de soporte */
.plans-section {
    padding: 80px 0;
    background-color: #f8fafc;
    margin: 60px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.plan-features {
    list-style-type: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.plan-features .fa-check {
    color: var(--success-color);
}

.plan-features .fa-times {
    color: #ccc;
}

.plan-button {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--gray);
    color: var(--dark-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #e0e0e0;
}

.plan-button.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.plan-button.primary:hover {
    background-color: #0D5BA4;
}

/* Sección de emergencia */
.emergency-section {
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px;
}

.emergency-content {
    display: flex;
    flex-wrap: wrap;
}

.emergency-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.emergency-text h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.emergency-text h2 i {
    margin-right: 10px;
}

.emergency-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.emergency-contact {
    text-align: center;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.emergency-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .support-description {
        flex-direction: column;
    }
    
    .support-image {
        order: -1;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-text {
        padding: 30px 20px;
    }
    
    .emergency-button {
        width: 100%;
        justify-content: center;
    }
}









/* Estilos específicos para la página de Utilerías */

/* Contenedor de utilerías */
.utilities-container {
    margin-top: 40px;
}

.utility-section {
    margin-bottom: 50px;
}

.utility-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.utility-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.utility-header h3 {
    margin: 0;
    color: var(--dark-color);
}

/* Grid de utilerías */
.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.utility-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    position: relative;
    border: 2px solid transparent;
}

.utility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.utility-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.utility-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.utility-card.featured {
    border-color: var(--secondary-color);
    background-color: rgba(255, 206, 1, 0.1);
}

.utility-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--gray);
	pointer-events: none;
}

.utility-card.disabled:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.utility-card.large {
    grid-column: span 2;
    min-height: 150px;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Sección de información */
.info-section {
    background-color: var(--gray);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 8px;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-top: 0;
    color: var(--dark-color);
}

.info-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}


/* Sección de descarga */
.download-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.download-text {
    flex: 1;
    min-width: 300px;
}

.download-text h2 {
    color: var(--white);
    margin-top: 0;
}

.download-text p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .utility-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .utility-card.large {
        grid-column: span 1;
    }
    
    .download-content {
        flex-direction: column;
    }
    
    .download-text {
        order: -1;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .utility-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* Estilos para el formulario */
form {
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
}

form table {
    width: 90%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

form table tr:first-child td {
    font-size: 1.1rem;
    color: var(--dark-color);
    padding-bottom: 10px;
}

/* Campos de entrada */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(15, 108, 189, 0.2);
}

/* Textarea específico */
form textarea.estilo_textarea {
    min-height: 120px;
    resize: vertical;
}

/* Botón de enviar */
form button.estilo_boton_preguntar {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button.estilo_boton_preguntar:hover {
    background-color: #0D5BA4;
    transform: translateY(-2px);
}

/* Texto pequeño de nota */
form table tr:last-child td:last-child font {
    color: var(--text-light);
    font-style: italic;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    form table {
        width: 100%;
    }
    
    form table tr td {
        display: block;
        width: 100% !important;
        padding: 8px 0 !important;
    }
    
    form table tr td[style*="padding-left"],
    form table tr td[style*="padding-right"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    form button.estilo_boton_preguntar {
        width: 100%;
        margin-bottom: 15px;
    }
    
    form table tr:last-child td:last-child {
        text-align: left !important;
    }
}