

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


.navbar {
    background-color: #222 !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600 !important;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
}

.nav-link:hover {
    color: #ff6600 !important;
}

.hero {
    background: url('../assets/prota.jpg') center center / cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
}

.seccion {
    padding: 60px 0;
}

.seccion-gris {
    background-color: #f5f5f5;
    padding: 60px 0;
}


.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.img-seccion {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}


footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

footer h5 {
    color: #ff6600;
    margin-bottom: 15px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

footer a:hover {
    color: #ff6600;
}

.footer-copy {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}


.redes a {
    display: inline-block;
    margin-right: 10px;
    color: #aaa;
    font-size: 1.2rem;
}

.redes a:hover {
    color: #ff6600;
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    color: white;
}


.login-box {
    max-width: 420px;
    margin: 80px auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-box h2 {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 25px;
}


.admin-sidebar {
    width: 240px;
    background: #1a1a1a;
    min-height: 100vh;
    padding: 20px 0;
    flex-shrink: 0;
}

.admin-sidebar .logo {
    color: #ff6600;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 10px 20px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.admin-sidebar a {
    display: block;
    color: #bbb;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    background: rgba(255,102,0,0.12);
    color: #ff6600;
}

.admin-main {
    flex: 1;
    background: #f4f4f4;
    padding: 30px;
}

.admin-topbar {
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    margin: -30px -30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}
