* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffffff;
    color: #111;
}

/* HEADER */
.main-header {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    position: relative;
    border-bottom: #676767 solid 6px;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-20px);
    animation: logoFade 1s ease forwards;
}
.Box_logo   {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

@keyframes logoFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* PHONE BUTTON */
.phone-btn a {
    color: white;
    background-color: #e50914;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border: 2px solid #e50914;
    border-radius: 30px;
    animation: pulse 1.8s infinite;
}


@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(229,9,20,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(229,9,20,0); }
    100% { box-shadow: 0 0 0 0 rgba(229,9,20,0); }
}

/* MENU */
.nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Circular Hover Effect */
.menu li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: #e0e0e0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.35s ease;
}

.menu li a:hover::before {
    width: 120%;
    height: 220%;
}

.menu li a:hover {
    color: #000;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .phone-btn {
        display: none;
    }

    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: #000000cf;
        width: 100%;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .menu.active {
        max-height: 300px;
    }

    .menu li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }
}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* BANNER PARALLAX */

.parallax {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../images/Main.png') center/cover fixed;
  transform: translateZ(0);
}

.banner-overlay {
    margin: 30px auto;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.636);
    padding: 40px;
    width: 90%;
    border-radius: 10px;
}

.banner h2 {
    font-size: 42px;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 2px;
    background: #bdbdbd;
    margin: 20px auto;
}

.banner p {
    font-size: 16px;
    font-weight: 300;
}

/* INFO SECTION */
.info-section {
    padding: 100px 20px;
}

.info-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.info-image {
    flex: 1;
    width: 400px;
}
.Img_A {
    width: 100%;
    display: block;
}
/* INFO SECTION B*/
.info-section-B {
    padding: 100px 20px;
}

.info-container-B {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex:flexwrap;
    align-items: center;
    gap: 40px;
}

.info-text-B {
    flex: 1;
    order: 1;
}

.info-text-B h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info-text-B p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary-B {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-B:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.info-image-B {
    flex: 1;
    width: 400px;
    order: 0;
}
.Img_B, .Img_C {
    width: 100%;
    display: block;
}
/* INFO SECTION C*/
.info-section-C {
    padding: 100px 20px;
    background-color: #111;
}

.info-container-C {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-text-C {
    flex: 1;
}

.info-text-C h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-text-C p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-primary-C {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-C:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.info-image-C {
    flex: 1;
    width: 400px;

}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.contact-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    transition: border 0.3s ease;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}
.contact-form button {
    cursor: pointer;
}

/* FOOTER */

.main-footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 20px;
}
.footer-logo-wrapper {
    perspective: 1000px;
}
.Footer_Logo {
    width: 90px;
    margin: 10px auto;
    display: inline-block;
    animation: coinSpin 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }

    20% {
        transform: rotateY(360deg);
    }

    /* Pausa (logo quieto) */
    60% {
        transform: rotateY(360deg);
    }

    /* Segundo giro */
    80% {
        transform: rotateY(720deg);
    }

    100% {
        transform: rotateY(720deg);
    }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-box p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-box i {
    margin-right: 8px;
    color: #d6d6d6;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        margin-top: 10px;
    }

    .info-container {
        flex-direction: column;
    }

    .banner h2 {
        font-size: 30px;
    }
}
