@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #00aaff;
    --secondary-color: #0077cc;
    --background-color: #e6f2f7;
    --dark-color: #151515;
}

html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* **************************** */
/*          UTILIDADE           */
/* **************************** */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.heading-1 {
    text-align: center;
    font-weight: 600;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* **************************** */
/*           HEADER             */
/* **************************** */
.container-hero {
    background-color: var(--primary-color);
    width: 100%;
    height: 80px;
    align-items: center;
    display: flex;
    border-bottom: none;
    box-shadow: none;
}

.hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
}

/* ---------- LOGO ---------- */
.container-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.6));
}

/* **************************** */
/*           NAVBAR             */
/* **************************** */
.navbar {
    display: flex;
    align-items: center;
    margin-left: 20px;
    gap: 2rem;
}

.navbar .fa-bars {
    display: none;
    gap: 2rem;
}

/* ----- MENU PRINCIPAL ----- */
.menu {
    display: flex;
    gap: 2rem;
}

.menu li {
    list-style: none;
}

.menu a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: '';
    width: 1.5rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu a:hover::after {
    opacity: 1;
    width: 2rem;
}

.menu a:hover {
    color: #fff;
}

.floating-menu {
    display: none;
}

/* ---------- REDES SOCIALES ---------- */
.redes-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    z-index: 9999;
}

.redes {
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.redes ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.redes ul li a i {
    font-size: 2.4rem;
    transition: transform 0.3s ease;
}

/* Colores */
.redes i.fa-facebook {
    color: #1877f2;
}

.redes i.fa-instagram {
    background: linear-gradient(45deg,
            #405de6,
            #833ab4,
            #c13584,
            #e1306c,
            #fd1d1d,
            #f56040,
            #fcaf45);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.redes ul li a:hover i {
    transform: scale(1.2);
}

/* **************************** */
/*            BANNER            */
/* **************************** */
.banner {

    display: grid;
    grid-template-columns: 50% 50%;
    background-image: linear-gradient(50deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url('img/bannerAgrandado2.jpg');
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.content-banner {

    margin: 0 auto;
    padding: 19rem 0 0 0;
    grid-column: 1/2;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.content-banner h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 500px;
}

.content-banner a {
    margin-top: 4rem;
    text-decoration: none;
    color: #fff;
    background-color: #25D366;
    display: inline-block;
    padding: 1rem 3rem;
    text-transform: uppercase;
    border-radius: 3rem;
    font-size: 2rem;
    transition: 0.3s;
}

.content-banner a:hover {

    opacity: 0.6;
}

.content-banner a i {
    width: 30px;
    font-size: 3rem;
    margin-right: 10px;
    transform: translateX(-5px);
}

/* **************************** */
/*         MAIN CONTENIDO       */
/* **************************** */

.main-content {
    background-color: var(--background-color);
}

main {

    padding-bottom: 30px;
}

/* **************************** */
/*           FEATURE            */
/* **************************** */

.main-content section .card-feature {

    margin: 0 30px;
}

.container-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
}



.card-feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;

    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem 0;

    max-width: 600px;

}

#servicio-cliente {

    display: flex;
    justify-content: flex-start;


}

.card-feature p a {


    text-decoration: none;
    color: inherit;

}

.card-feature div {

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-left: 6px;
    margin-right: 3px;
}

.card-feature p {

    justify-content: center;
}

.card-feature i {
    font-size: 2.7rem;
    color: var(--primary-color);

}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}



.feature-content span {
    font-size: 1.5rem;
    color: var(--dark-color);
    align-items: flex-start;
   
}

.feature-content a {
    font-size: 1.4rem;
    color: var(--dark-color);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.feature-content p {
    color: #777;
    max-width: 300px;
    font-size: 1.4rem;
}

/* **************************** */
/*           CATEGORIES         */
/* **************************** */

.top-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.container-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card-category {
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    gap: 2rem;
}

.category-destino-a {
    background-image: linear-gradient(#00000080, #00000080), url('img/miramar.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.category-destino-b {
    background-image: linear-gradient(#00000080, #00000080), url('img/marDelPlata.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-destino-c {
    background-image: linear-gradient(#00000080, #00000080), url('img/buenosAires.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-category p {
    font-size: 2.5rem;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}

.card-category p::after {
    content: '';
    width: 2.5rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translate(-50%, 50%);
}

.card-category span {
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
}

.card-category span:hover {
    color: var(--primary-color);
}

.container-img img {
    width: 100%;
}

/* **************************** */
/*         Formulario           */
/* **************************** */

.formulario {

    display: grid;
    grid-template-columns: 40% 60%;
    background: linear-gradient(50deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.formulario_animacion {

    width: 33%;
    margin: 0 auto;
    padding: 19rem 0;
    grid-column: 1/2;
    justify-content: center;
    text-align: center;
    align-items: center;

}

.formulario_campos {
    width: 150%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    min-width: 100%;
}

form {

    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    margin-top: 45px;
    margin-bottom: 45px;
    ;
    padding: 20px 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: #00aaff;
}


.formulario_section1 {
    grid-column: 1/2;
    grid-row: 1/2;
}

.formulario_section2 {
    grid-column: 2/3;
    grid-row: 1/2;
}

.formulario_section3 {
    grid-column: 1/3;
    grid-row: 2/3;

}

.formulario_section3 input {
    max-width: 85%;
}

.formulario_animacion h2 {
    display: flex;
    justify-content: center;
    font-size: 3.5rem;
    line-height: 1.2;
    color: white;
    font-style: italic;
}

#formulario {
    scroll-margin-top: 100px;
}

#nosotros {
    scroll-margin-top: 100px;
}

#inicio {
    scroll-margin-top: 100px;
}

.formulario select {
    height: 35px;
    max-width: 85%;

    font-size: 15px;
    font-weight: 400;

    margin-bottom: 20px;

    padding: 8px 25px;

    border-radius: 25px;
    background-color: #e6f4ff;
    border: 2px solid #f0faf1;
}

#ayudante_select {
    width: 320px;
}

.userInfo {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.pedidoInfo {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.direccion_calle label,
.direccion_numero label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 10px;
    display: flex;
    justify-content: flex-start;
}

.userInfo label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 10px;
}

.pedidoInfo label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-left: 10px;
    display: flex;
    justify-content: flex-start;
}

textarea {
    resize: none;
    height: 80px;
    max-width: 85%;
    padding: 8px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    background-color: #e6f4ff;
    border: 2px solid #f0faf1;
}

.g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    margin-left: 65px;
    margin-top: 15px;
}

input {
    padding: 8px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    background-color: #e6f4ff;
    border: 2px solid #f0faf1;
    outline: none;
    max-width: 85%;
}

.formulario_section2 input {
    width: 85%;
}

input::placeholder,
textarea::placeholder {
    color: #99ac99;
}

.btn {
    font-size: 16px;
    border: 0;
    border-radius: 25px;
    background-color: #e6f2f7;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 150px;
}

.btn:hover {
    opacity: 0.9;
}

/* **************************** */
/*           NOSOTROS           */
/* **************************** */

.heading-1 {
    margin-top: 50px;
}

.blogs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.container-blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card-blog {
    display: flex;
    flex-direction: column;
    background-color: #f2f8fb;
    border-radius: 2rem;
    padding-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    gap: 2rem;
}

.card-blog .container-img {
    border-radius: 2rem;
    overflow: hidden;
    height: 250px;
}

.card-blog .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

.content-blog {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.content-blog h3 {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
    color: var(--dark-color);
    font-weight: 500;
}

.content-blog p {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #777;
}

.container-blogs span {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* **************************** */
/*           FOOTER             */
/* **************************** */

footer {
    background-color: var(--primary-color);
    color: #000000;
    width: 100%;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.55);
    padding: 2rem 0;
    position: relative;
}

.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

copyright p,
.copyright p {
    position: static;
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.9;
}

.payment-methods {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    align-items: center;
}

.payment-methods img {
    height: 28px;
    opacity: 0.8;
    filter: grayscale(10%);
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ************************************** */
/*         MEDIA QUERIES -- 1000px        */
/* ************************************** */
@media(max-width:1000px) {

    .main-content section .card-feature {
        margin: 0 20px;
    }

    .container-features {
        display: flex;
        flex-direction: column;
        padding: 3rem 2rem;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        align-items: center;
    }

    .container-features p {
        text-align: justify;
    }


    .card-feature {
        flex-direction: column;
        border-radius: 2rem;
        align-items: center;
        min-width: 95%;
    }

    .feature-content {
        align-items: center;
        min-width: 95%;
    }

    .feature-content p {
        font-size: 1.4rem;
        text-align: center;
        max-width: 90%;
    }

    .feature-content span {
        font-size: 1.6rem;
        text-align: center;
    }

    .formulario_animacion {
        display: none;
    }

    .formulario {
        display: grid;
        grid-template-columns: 5% 90% 5%;
        margin: 15px 15px 25px 0;
        max-width: 100%;
    }

    .formulario_campos {
        grid-column: 2/3;
        margin-left: 100px;
    }

    .formulario input,
    textarea,
    select {
        max-width: 85%;
    }

    .formulario input,
    textarea,
    select {
        max-width: 85%;
    }
}

/* ************************************** */
/*         MEDIA QUERIES -- 768px         */
/* ************************************** */
@media (max-width:768px) {

    html {
        font-size: 55%;
    }

    .hero {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .navbar .fa-bars {
        display: block;
        color: #fff;
        font-size: 3rem;
        cursor: pointer;
    }

    .navbar .menu {
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .navbar .fa-bars {
        display: none;
    }

    .floating-menu {
        display: block;
        position: fixed;
        top: 1.5rem;
        bottom: 2rem;
        right: 2rem;
        z-index: 9999;
    }

    .menu-toggle {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #00aaff;
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
        transition: transform 0.3s ease;
    }

    .menu-panel {
        position: absolute;
        top: 60px;
        right: 0;

        background: #00aaff;
        color: white;

        padding: 1rem 1.2rem;
        border-radius: 16px;
        width: 165px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        text-align: center;
    }

    .menu-panel.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-panel ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .menu-panel a {
        text-decoration: none;
        color: #fff;
        font-size: 1.7rem;
        font-weight: 700;
    }

    .banner {
        background-position: center;
        background-image: linear-gradient(50deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url('img/bannerResponsive5.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        text-align: center;
        padding: 10rem 2rem;
        display: grid;
        grid-template-rows: 40% 60%;
        grid-template-columns: 1fr;
        max-height: 650px;
    }

    .content-banner {
        grid-row: 2 / 2;
        padding: 6rem 0 0 0;
    }

    .content-banner h2 {
        display: flex;
        font-size: 2.4rem;
        line-height: 1.4;
        color: #fff;
        margin-bottom: 2rem;
        max-width: 200px;
    }

    .content-banner a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        font-size: 1.8rem;
        padding: 1.2rem 2.5rem;
        border-radius: 3rem;
        background-color: #25D366;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .content-banner a:hover {
        background-color: #1ebe5d;
        transform: scale(1.05);
    }

    .content-banner i {
        font-size: 2rem;
    }

    .card-feature {
        flex-direction: column;
        border-radius: 2rem;
        align-items: center;
    }

    .feature-content {
        align-items: center;
    }

    .feature-content p {
        font-size: 1.4rem;
        text-align: center;
    }

    .feature-content span {
        font-size: 1.6rem;
        text-align: center;
    }

    .heading-1 {
        font-size: 2.4rem;
    }

    .card-category {
        height: 12rem;
    }

    .card-category p {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1;
    }

    .card-category span {
        font-size: 1.4rem;
    }

    /* ---------- Sección Formulario ---------- */

    .formulario_animacion {
        display: none;
    }

    .formulario {
        display: grid;
        grid-template-columns: 0.11% 99.8% 0.1%;
        margin: -15px 15px 25px 0;
        max-width: 100%;
    }

    .formulario_campos {
        grid: 2/3;
        margin-left: 85px;
    }

    .formulario input,
    textarea,
    select {
        max-width: 85%;
    }

    .container-blogs {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}


/* ************************************** */
/*         MEDIA QUERIES -- 690px         */
/* ************************************** */

@media (max-width:690px) {

    .formulario_campos{

        margin-left: 11.8%;
        min-width: 600px;
    }
    
    form {
        display: flex;
        flex-direction: column;
        
    }

    form div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    form div select {
        width: 85%;
    }

    form div input {
        width: 85%;
    }

    form div textarea {
        width: 85%;
    }

    #ayudante_container {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    #ayudante_container label {

        font-size: 15px;
        font-weight: 400;
        margin-bottom: 5px;
        margin-left: 5px;
        display: flex;
        justify-content: center;
        width: 100%;

    }

    #ayudante_container select {

        margin-left: 21px;
    }

    .g-recaptcha{
        margin-left: 13%;
    }
}

/* ************************************** */
/*         MEDIA QUERIES -- 468px         */
/* ************************************** */

@media (max-width:468px) {

    html {
        font-size: 45%;
    }

    content-banner {
        max-width: 50rem;
        padding: 22rem 0;
    }

    .heading-1 {
        font-size: 2.8rem;
    }

    .card-feature {
        flex-direction: column;
        border-radius: 2rem;
        align-items: center;
    }

    .feature-content {
        align-items: center;
    }

    .feature-content p {
        font-size: 1.4rem;
        text-align: center;
    }

    .feature-content span {
        font-size: 1.6rem;
        text-align: center;
    }

    .blogs {
        padding: 2rem;
    }

    .container-blogs {
        grid-template-columns: 1fr;
        height: auto;
        gap: 2rem;
    }

    .content-blog h3 {
        font-size: 2.4rem;
    }

    .content-blog span {
        font-size: 1.8rem;
    }

    .content-blog p {
        font-size: 2.2rem;
    }

    .g-recaptcha {
        margin-left: 30px;
    }

}


/* Ajustes según el tamaño de pantalla */
@media (max-width: 425px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}

@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.65);
    }
}

@media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.55);
    }
}

header,
.banner,
.container-features,
.container-blogs,
.formulario {
    max-width: 100%;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}