/* style.css - Hoja de estilos personalizada */

:root {
    --primary-color: #004085;
    --secondary-color: #0056b3;
    --accent-color: #e0a800;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fcfcfc;
}

/* Navbar */
.navbar-brand img {
    height: 90px;
    width: auto;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* HERO Section */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
}

.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item {
    background-size: cover;
    background-position: center;
}

/* Overlay for images to make text readable */
.hero-carousel .carousel-item::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-content .btn-cta {
    font-size: 1.25rem;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.hero-content .btn-cta:hover {
    background-color: #c69500;
    transform: scale(1.05);
}

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background-color: #fff;
}

.pillar-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    background: #f8f9fa;
}

.pillar-box:hover {
    transform: translateY(-10px);
}

.pillar-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #e9ecef;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Carousel 7 images section */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.gallery-img {
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Map & Contact Sections */
.map-section {
    background-color: #f8f9fa;
    padding: 60px 0 0 0;
}

.data-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #fff;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 30px 0;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
}
