/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Video Section */
.contact-video-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.contact-video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-video-section>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.contact-video-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.contact-form-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #d30505c0;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form-section button {
    padding: 12px;
    background: #d30505c0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form-section button:hover {
    background-color: #d30505c0;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px;
    background: white;
}

.contact-info-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.contact-info-section>div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
    align-items: center;
}

.contact-info-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.contact-info-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-section a {
    color: #d30505c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section a:hover {
    color: #d30505c0;
    text-decoration: underline;
}

.contact-info-section .value-item .emoji {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(90%);
}

/* Contact Map Section */
.contact-map-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* ============================================
   NOSOTROS PAGE STYLES
   ============================================ */

/* Nosotros Video Section */
.nosotros-video-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.nosotros-video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nosotros-video-section>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.nosotros-video-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Nosotros About Section */
.nosotros-about-section {
    padding: 60px 20px;
    background: white;
}

.nosotros-about-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.nosotros-about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.nosotros-about-section .about-text {
    flex: 1;
}

.nosotros-about-section .about-image {
    flex: 1;
}

.nosotros-about-section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.nosotros-about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.nosotros-about-section img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nosotros-about-section button {
    padding: 12px 30px;
    background: #d30505c0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nosotros-about-section button:hover {
    background-color: #d30505c0;
    transform: translateY(-2px);
}

/* Nosotros Team Section */
.nosotros-team-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.nosotros-team-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.nosotros-team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.nosotros-team-section>div {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nosotros-team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nosotros-team-section .team-member {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-team-section .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.nosotros-team-section .team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.nosotros-team-section .team-member h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.nosotros-team-section .team-member .position {
    color: #d30505c0;
    font-weight: 600;
    margin-bottom: 10px;
}

.nosotros-team-section .team-member .description {
    color: #666;
    font-size: 14px;
}

/* Nosotros Values Section */
.nosotros-values-section {
    padding: 60px 20px;
    background: white;
}

.nosotros-values-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.nosotros-values-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.nosotros-values-section>div {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nosotros-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nosotros-values-section .value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nosotros-values-section .value-item:hover {
    transform: translateY(-5px);
    background: #f0f7ff;
}

.nosotros-values-section .value-item .emoji {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(90%);
}

.nosotros-values-section .value-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.nosotros-values-section .value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {

    .contact-video-section h1,
    .nosotros-video-section h1 {
        font-size: 32px;
    }

    .nosotros-about-section .about-content {
        grid-template-columns: 1fr;
    }

    .contact-form-section,
    .nosotros-about-section,
    .nosotros-team-section,
    .nosotros-values-section {
        padding: 40px 15px;
    }

    .contact-form-section h2,
    .contact-info-section h2,
    .nosotros-team-section h2,
    .nosotros-values-section h2 {
        font-size: 24px;
    }
}