* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #005583;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.2);
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.3);
}

.banner {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    text-align: center;
    margin: 30px 0;
    color: #005583;
    font-size: 2.2rem;
}

h4 {
     color: #FFFFFF;
	text-decoration: none;
   }

.sucursales-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.sucursal-item {
    width: 100%;
}

.sucursal-btn {
    background-color: #005583;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    text-align: left;
    border-radius: 5px;
    transition: all 0.3s;
    width: 100%;
    display: block;
}

.sucursal-btn:hover {
    background-color: #0073a8;
}

.sucursal-btn.active {
    background-color: #0073a8;
}

.sucursal-titulo {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}

.sucursal-content {
    display: none;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-top: 2px;
}

.sucursal p {
    margin-bottom: 10px;
    color: #555;
}

.sucursal strong {
    color: #333;
}

.sucursal a {
    color: #005583;
    text-decoration: none;
    transition: color 0.3s;
}

.sucursal a:hover {
    color: #0073a8;
    text-decoration: underline;
}

.mapa {
    margin-top: 20px;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #005583;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.contact-link:hover {
    background-color: #0073a8;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #289765;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
	text-decoration: none !important;
}

.whatsapp-link:hover {
    background-color: #2eae74;
	text-decoration: none !important;
	olor: white !important;
}

footer {
    background-color: #005583;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .contact-link, .whatsapp-link {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.sucursal-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* mantén el resto de tus estilos actuales */
}

.mas {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.sucursal-btn.active .mas {
    transform: rotate(0deg);
    content: "-";
}