/* General Styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #2c2c2c;
    color: #fff;
}

/* Header Styles */
header {
    background: #003366; /* Fondo azul */
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar a {
    text-decoration: none;
    margin: 0 15px;
    color: #fff; /* Palabras principales en blanco */
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar a:hover, .navbar a.active {
    color: #FFD700; /* Hover en amarillo */
}

/* Hero Section */
.header {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;

}

.hero {
    max-width: 1200px;
    max-height: 1080px;
    margin: 0 auto;
    text-align: center;
}

.hero .title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    margin-bottom: 20px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 40px;
    border: 2px solid #FFD700; /* Hover en amarillo */
    color: black;
    text-decoration: none;
    background: #FFD700; /* Fondo amarillo */
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: #FFD700;
}

/* Content Styles */
.content {
    padding: 50px 20px;
}

.products, .services, .about, .contact {
    padding: 50px 20px;
    background: #1c1c1c;
    margin: 20px 0;
}

.products h1, .services h2, .about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD700; /* Títulos en amarillo */
}

.products p, .services p, .about p, .contact p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Box Container Styles */
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.box {
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: calc(33.333% - 40px);
    margin: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.box h1 {
    font-size: 24px;
    color: #FFD700; /* Títulos en amarillo */
    margin: 15px 0;
}

.box p {
    font-size: 16px;
    color: #ccc;
}

.box:hover {
    transform: translateY(-10px);
    background: #3c3c3c;
}

/* Team Styles */
.team {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    margin: 10px;
    padding: 10px;
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 22px;
    color: #FFD700; /* Títulos en amarillo */
}

.team-member p {
    font-size: 16px;
    color: #ccc;
}

/* Contact Styles */
.contact-info {
    margin: 20px 0;
}

.contact-info p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info a {
    color: #FFD700; /* Enlaces en amarillo */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info i {
    color: #FFD700; /* Iconos en amarillo */
    margin-right: 10px;
}

.f-enlaces {
    margin: 20px 0;
}

.f-enlaces a {
    text-decoration: none;
    color: #FFD700; /* Enlaces en amarillo */
    margin: 0 10px;
}

#mapa {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Footer Styles */
footer {
    background: #003366;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-container div {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-info h3, .footer-links h3, .footer-social h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FFD700; /* Títulos en amarillo */
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #FFD700;
}

.footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: 18px;
}

.footer-social a:hover {
    color: #FFD700;
}

footer p {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .head {
        flex-direction: column;
    }
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar a {
        margin: 10px 0;
    }
    .box-container {
        flex-direction: column;
        align-items: center;
    }
    .box {
        width: 80%;
    }
}
