@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Hind+Siliguri:wght@300;400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Kosugi+Maru&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+DE+Grund:wght@100..400&family=Playwrite+ES+Deco:wght@100..400&family=Playwrite+IT+Moderna:wght@100..400&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kosugi Maru", sans-serif;
}

body {
    background-color: #f4f4f4;
   
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    background-color: #25D366;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-content:hover {
    background-color: #20b958;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.company-logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.whatsapp-icon {
    width: 30px;
    height: auto;
}

.whatsapp-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-content {
        padding: 8px 16px;
    }

    .company-logo {
        width: 30px;
        margin-right: 8px;
    }

    .whatsapp-icon {
        width: 25px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color:#1e1e1e ;
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 70px;
    margin-right: 10px;
}

.navbar .logo .text {
    font-size: 22px;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color:#6a0dad ;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        position: absolute;
        top: 90px;
        right: 0;
        background-color: #1e1e1e;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .navbar ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

.content {
    padding-top: 70px;
}

/*contenedor imagen*/
.section-container {
    position: relative;
    background: linear-gradient(to bottom, #1e1e1e 0%, #1e1e1e 33%, #6a0dad 33%, #6a0dad 66%, #1e1e1e 66%, #1e1e1e 100%);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.content-wrapper img {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.text-box {
    background-color: #fff;
    padding: 40px;
    margin-top: -200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.text-box h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.text-box a {
    display: block; 
    background-color:#6a0dad;
    color: #fff;
    padding: 10px 0; 
    width: 100%; 
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.text-box a:hover {
    background-color: #5a0dbb;
}


@media (max-width: 768px) {
    .text-box {
        margin-top: -150px; 
        padding: 30px;
    }

    .text-box h2 {
        font-size: 48px;
    }

    .text-box p {
        font-size: 14px;
    }

    .text-box a {
        padding: 10px 0;
        font-size: 16px; 
    }
}

@media (max-width: 480px) {
    .text-box {
        margin-top: -100px; 
        padding: 20px;
    }

    .text-box h2 {
        font-size: 36px;
    }

    .text-box p {
        font-size: 13px;
    }

    .text-box a {
        padding: 8px 0;
        font-size: 14px; 
    }
}

/*servicios*/
.services-section {
    background-color: #fff;
    padding: 150px 50px;
    text-align: center;
}

.services-section h2 {
    font-size: 55px;
    margin-bottom: 70px;
}

.carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    scroll-snap-align: center;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.carousel-item h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.carousel-item p {
    font-size: 17px;
    color: #666;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel-controls button {
    background-color: #2997b0;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.carousel-controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .services-section h2 {
        font-size: 45px;
    }

    .carousel-item h3 {
        font-size: 22px;
    }

    .carousel-item p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-section h2 {
        font-size: 35px;
    }

    .carousel-item h3 {
        font-size: 20px;
    }

    .carousel-item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-section h2 {
        font-size: 28px;
    }

    .carousel-item img {
        max-width: 80px;
    }

    .carousel-item h3 {
        font-size: 18px;
    }

    .carousel-item p {
        font-size: 13px;
    }
} 

/*sobre nosotros*/
.about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
    margin-bottom: 20px;
    margin-top: 20px;
}

.about-us-content {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.about-us-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 25px;
    background-color:#6a0dad ;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.about-us-cards {
    flex: 1;
    min-width: 300px;
}

.card1{
    background-color: rgb(198, 198, 198);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card2{
    background-color: rgb(198, 198, 198);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card3{
    background-color: rgb(198, 198, 198);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 30px;
    }

    .about-us-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-us-content h2 {
        font-size: 36px;
    }

    .about-us-content p {
        font-size: 16px;
    }

    .about-us-cards {
        margin-top: 20px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-us-content h2 {
        font-size: 28px;
    }

    .about-us-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 13px;
    }
}

/*redes*/
.full-screen-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    background-image: url('../img/flipper4.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.full-screen-overlay h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.full-screen-overlay .subtitle {
    position: relative;
    z-index: 2;
    color:#0dada5 ;
    font-size: 24px;
    margin-bottom: 30px;
}

.social-icons {
    position: relative;
    z-index: 2;
}

.social-icons a {
    margin: 0 15px;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    transition: color 0.3s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2); 
    display: inline-block;
    text-align: center;
}

.social-icons a:hover {
    color: #6a0dad; 
}

@media (max-width: 768px) {
    .full-screen-overlay h1 {
        font-size: 36px;
    }

    .full-screen-overlay .subtitle {
        font-size: 20px;
    }

    .social-icons a {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .full-screen-overlay h1 {
        font-size: 28px;
    }

    .full-screen-overlay .subtitle {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 24px;
    }
}

/*contacto*/
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background-color: #fff;
    padding: 50px 0;
    padding-top: 150px;
}

.contact-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 30px;
    background-color: #1e1e1e;
    color: #ffffff;
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.contact-content p {
    font-size: 18px;
    color: #6a0dad;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #00a8ff;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    max-width: 300px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 100px 0;
    }

    .contact-content, .contact-image {
        max-width: 100%;
    }

    .contact-content {
        padding: 20px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-content p {
        font-size: 16px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-info ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-content h2 {
        font-size: 24px;
    }

    .contact-content p {
        font-size: 14px;
    }

    .contact-info h3 {
        font-size: 16px;
    }

    .contact-info ul li {
        font-size: 14px;
    }
}

/*footer*/
.footer {
    background-color: #fff;
    color: #333;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 50px; 
    margin-right: 10px;
}

.social-media {
    margin-right: 40px; 
}

.social-media h4, .location h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #000; 
    display: inline-block;
    text-align: center;
}

.icons a:hover {
    background-color: #6a0dad; 
}

.location p {
    font-size: 16px;
    color: #333;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    font-size: 16px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    flex-wrap: wrap; 
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: lightcoral;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .social-media, .location {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }
}
