@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'open sans';
    /* outline: 1px solid rgb(24, 46, 187); */
}
:root {
     /* bg-colors */
    --background: #b54a08;
    --background-secondary:rgb(233, 229, 229);
    --btn-bg: #B54408;
    --btn-secondary: #D26804;

    /* Text-colors */
    --text-white: #f6f8fb;
    --text-black: #060606e3;
    --text-bg:#B54408;
    --text-p: rgb(98, 96, 96);

     /* Fonts */
    --font-opensans: "Open Sans";
    --font-regular: 400;
    --font-mediun: 500;
    --font-semibold: 600;
    --font-bold: 700;

    --font-xs: 12px;
    --font-s: 16px;
    --font-m: 24px;
    --font-l: 32px;
    --font-xl: 40px;
    --font-xxl: 45px;
}
/* ==================== REUTILIZABLES ==================== */
/* BUTTON */
.btn {
    background: var(--btn-bg);
    padding: 8px;
    border-radius: 35px;
    width: 150px;
    text-align: center;
    font-weight: var(--font-semibold);
    font-size: var(--font-sm);
    color: var(--text-white);
    letter-spacing: 1.5px;
    cursor: pointer;
}
.btn:hover {
    color: rgb(134, 131, 131);
}
.btn__secondary {
    outline: 1px solid var(--btn-secondary);
    padding: 8px;
    border-radius: 35px;
    width: 150px;
    text-align: center;
    font-weight: var(--font-semibold);
    font-size: var(--font-sm);
    color: var(--text-bg);
    letter-spacing: 1px;
    cursor: pointer;
}
.btn__secondary:hover {
    color: rgb(134, 131, 131); 
    outline: 1px solid rgb(134, 131, 131) ;
    border-radius: 35px;
}
span {
    background: rgb(70,23,2);
    background: linear-gradient(90deg, rgb(97, 41, 15) 18%, rgba(181,68,8,1) 87%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: var(--font-xl);
    font-weight: var(--font-bold);
}

/* ==================== REUTILIZABLES ==================== */

/* ==================== HEADER ==================== */
.header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    background: rgba(255, 255, 255, 0.966);

    position: fixed;
    width: 100%;
}
.header__logo {
    width: 130px;
    height: 50px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    display: flex;
}
/* ocultamos menuDesktop */
.navbar__menuDesktop {
    display: none;
}
/* ocultamos menuDesktop */

/* menu */
.navbar__menu {
    padding-top: 1.45rem;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    min-height: 100vh;
    top: 0; 
    right: 0;
    /* border-left: 0.5px solid var(--btn-bg); */
    transform: translateX(200%);
    transition: all 0.4s ease;

    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.727);
}
.navbar__items {
    width: 150px;
    font-weight: var(--font-semibold);
    font-size: var(--font-sm);
    color: var(--btn-bg);
    letter-spacing: 2px;
    /* border-top: 0.5px solid var(--btn-bg); */
    border-bottom: 0.5px solid var(--btn-bg);
    padding: 8px;
    text-align: center;
    margin-top: 10px;
}
.navbar__links {
    color: var(--btn-bg);
}
#toggle__menu {
    display: none;
}
/* ==================== PSEUDOCLASES ==================== */

#toggle__menu:checked ~ .navbar__menu {
    transform: translateX(0);
    
}
.navbar__menu label{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
#menu {
    font-size: var(--font-m);
    color: rgb(98, 96, 96);
}
#closemenu{
    color: rgb(98, 96, 96);
    font-size: var(--font-m);
    width: 35px;
    align-self: flex-end;
}


/* ==================== BUTTON ==================== */
.navbar__btn {
    background: var(--btn-bg);
    padding: 8px;
    border-radius: 35px;
    width: 150px;
    text-align: center;
    font-weight: var(--font-semibold);
    font-size: var(--font-sm);
    color: var(--text-white);
    letter-spacing: 2px;
}
.navbar__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}
/* ==================== MAIN ==================== */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
/* ==================== SECTION HERO ==================== */
#hero {
    width: 100%;
    max-width: 1200px;
}
.hero__img {
    width: 100%;
    object-fit: cover;
    padding-top: 80px;
}
.hero__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    text-align: center;
}
.hero__h1 {
    padding-top: 20px;
    font-size: var(--font-xl);
    font-weight: var(--font-bold);
    text-align: center;
}
.hero__p {
    font-size: var(--font-s);
    text-align: center;
    color: var(--text-p);
}
/*eliminar borde que trae el btn */
button {
    all: unset;
}

/* ==================== SECTION ABOUT ==================== */
#about {
    width: 100%;
    /* background: var(--background-secondary); */
    max-width: 1200px;
}
.about__container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 1rem;
}
#about h1 {
    padding-top: 2rem;
    text-align: center;
    font-size: var(--font-l);
    font-weight: var(--font-bold);
}
/* ==================== ABOUT-INFO 1 al 6 ==================== */
.about__info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 15px;
    padding-bottom: 10px;
    /* background: #b3cae3d5; */
}
.info__title {
    padding: 0.9rem;
    font-size: var(--font-s);
    font-weight: var(--font-mediun);
    text-align: center;
}
.info__p {
    padding: 0.5rem;
    font-size: var(--font-s);
    font-weight: var(--font-regular);
    text-align: center;
    color: var(--text-p);
}
.info__btn {
    width:100%;
    text-align: center;
}

.about__info--img {
    width: 100%;
    object-fit: cover;
} 

/* ==================== SECTION CARDS ==================== */
#cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    
}
.cards__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 10px;
}
.cards__info--title {
    font-size: var(--font-l);
    font-weight: var(--font-bold);
}
.cards__info--p {
    font-size: var(--font-s);
    font-weight: var(--font-regular);
    color: var(--text-p);
}
.cards__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.card {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 393px;
    align-items: center;
    justify-content: center;
    border: 1px solid #534b4b;
    border-radius: 25px;
}
.card__img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
}
.card__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.card__info--title {
    font-size: var(--font-l);
    font-weight: var(--font-bold);
    letter-spacing: 2px;
    color: var(--text-bg);
}
.card__info--p {
    font-size: var(--font-s);
    font-weight: var(--font-regular);
    color: var(--text-p);
}
.card__btn {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn--card {
    width: 260px;
    padding: 10px;
}

/* ==================== SECTION CONTACT ==================== */
#contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    max-width: 1200px;
    gap: 50px; 
}
.contact__title {
    font-size: var(--font-l);
    font-weight: var(--font-bold);
}
.contact__p {
    text-align: center;
    font-size: var(--font-s);
    font-weight: var(--font-regular);
    color: var(--text-p);
}
.contact__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    gap: 20px;
}
.contact__info--container {
    display: flex;
}
.contact__info {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
.info__telef,
.info__mail,
.info__ubic{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.info__telef,
.info__mail,
.info__ubic p {
    font-size: var(--font-xs);
}
.fa-solid {
    color: var(--btn-bg);
    font-size: var(--font-m);
}

/* form */
.form__index {
    width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--font-s);
    font-weight: var(--font-regular);
    color: var(--text-p);
    box-shadow: rgba(0, 0, 0, 0.246) 0px 4px 12px;
    padding: 10px;
    border-radius: 20px;
}
Fieldset {
    border: none;
}

label {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    
}
.label__1 {
    padding: 10px 0px;
}
#name,
#last-name,
#email {
    width: 100%;
    height: 30px;
    border-radius: 30px;
    border: 1px solid rgb(98, 96, 96);
}
#message {
    border-radius: 14px;
    border: 1px solid rgb(98, 96, 96);
}
/* form */

/* maps */
iframe {
    width: 100%;
    height: 400px;
    text-align: center;
    align-items: center;
    padding-top: 10px;
}
/* maps */

/* ==================== FOOTER ==================== */
footer {
    background: var(--background-secondary);
    text-align: center;
    padding: 10px;
}
.footer__logo {
    width: 150px;
    height: 55px;
}
footer p {
    font-size: 8px;
    font-weight: var(--font-regular);
}
.footer__redes {
    color: #644b3c;
    font-size: var(--font-m);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 10px 0;
}