/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Botón de WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url(/Assets/img/Background.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/Assets/img/Hero.webp);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b8971f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #fff;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
    letter-spacing: 2px;
}

.navbar.scrolled .logo {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: #333;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-contacto {
    background-color: #d4af37;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-contacto:hover {
    background-color: #b8971f;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: #333;
}

/* Sección Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(Assets/img/Hero.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Sección Nosotros */
.nosotros {
    background-color: #fff;
    padding: 80px 0;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.nosotros-img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Subsección Historia, Misión y Visión */
.nosotros-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.nosotros-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.nosotros-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.card-icon {
    text-align: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 2.5rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nosotros-card:hover .card-icon i {
    background: #d4af37;
    color: #fff;
    transform: scale(1.1);
}

.nosotros-card .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.nosotros-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .nosotros-sub {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Subsección La Agencia */
.agencia-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.agencia-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.agencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.agencia-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.agencia-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.agencia-card p {
    color: #666;
    line-height: 1.7;
}

/* Subsección Directores */
.directores-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    margin-top: 50px;
    overflow-x: auto;
    padding: 30px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #f0f0f0;
}

.nosotros-director {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.director-card {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.director-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.director-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.director-card:hover .director-img::before {
    opacity: 1;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.director-card:hover .director-img img {
    transform: scale(1.08);
}

.director-info {
    padding: 20px;
    text-align: center;
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.director-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e8c456);
    transition: all 0.4s ease;
    border-radius: 3px;
}

.director-card:hover .director-info::before {
    width: 100px;
}

.director-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.director-info h4 {
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.director-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.director-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.director-info li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.director-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.director-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.director-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d4af37;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.director-social a:hover::before {
    transform: translateY(0);
}

.director-social a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.director-social a:hover i {
    color: #fff;
}

/* Estilos para la sección de valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.valor-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.valor-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.valor-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.valor-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.nosotros-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.nosotros-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.nosotros-item h3 i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2rem;
}

.nosotros-item p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nosotros-grid {
        grid-template-columns: 1fr;
    }
    
    .nosotros-img {
        margin-bottom: 30px;
    }
}

/* Sección Modelos */
.modelos {
    background-color: #f9f9f9;
}

.categorias-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 0 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #d4af37;
    color: #fff;
}

.galeria-modelos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.modelo-card {
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modelo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modelo-img {
    height: 400px;
    overflow: hidden;
}

.modelo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modelo-card:hover .modelo-img img {
    transform: scale(1.05);
}

.modelo-info {
    padding: 20px;
    text-align: center;
}

.modelo-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.modelo-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.ver-mas {
    text-align: center;
    margin-top: 20px;
}

/* Sección Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.servicio-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.servicio-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.servicio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.servicio-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Sección Testimonios */
.testimonios {
    background-color: #f9f9f9;
}

.testimonios-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonio-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonio-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonio-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cliente-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
}

.cliente-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-texto {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.cliente-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cliente-info p {
    color: #666;
    font-size: 0.9rem;
}

.testimonios-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    color: #d4af37;
}

.testimonios-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #d4af37;
}

/* Sección Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contacto-info {
    padding-right: 30px;
}

.mapa-container {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contacto-info .section-title {
    text-align: left;
}

.contacto-info .section-title::after {
    margin-left: 0;
}

.contacto-info > p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: #d4af37;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d4af37;
    color: #fff;
}

.contacto-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    color: #333;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contacto-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    color: #333;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.contacto-form textarea {
    height: 150px;
    resize: vertical;
}

.contacto-form button {
    background-color: #d4af37;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contacto-form button:hover {
    background-color: #b8971f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 151, 31, 0.3);
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #999;
}

.contacto-form select option {
    color: #333;
    background-color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo p {
    margin-top: 15px;
    color: #aaa;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 15px;
}

#newsletter-form {
    display: flex;
}

#newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Montserrat', sans-serif;
}

#newsletter-form button {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#newsletter-form button:hover {
    background-color: #b8971f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: #aaa;
}

.footer-bottom-links a {
    color: #aaa;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-info {
        padding-right: 0;
    }
    

}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        color: #333 !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .galeria-modelos {
        grid-template-columns: 1fr;
    }
    
    .testimonio-content {
        padding: 30px 20px;
    }
}

/* Animaciones de Scroll - Movidas a animations.css */
.nosotros-sub {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.formacion-card {
    background: none;
    padding: 30px;
    border-radius: 15px;
}

.formacion-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.formacion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.formacion-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.formacion-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #d4af37;
}

.formacion-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .formacion-card {
        padding: 20px;
    }
    
    .formacion-card h3 {
        font-size: 1.2rem;
    }
    
    .formacion-card ul li {
        font-size: 0.9rem;
    }
}

.nosotros-sub > div {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nosotros-sub > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nosotros-sub .section-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.nosotros-sub .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #d4af37;
}

.nosotros-sub p {
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .nosotros-sub {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nosotros-sub {
        grid-template-columns: 1fr;
    }
}