/* 
header:
font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-size: 2rem;

titulo:
font-family: "Ponomar", system-ui;
    font-weight: 400;
    font-style: normal;

Subtitulo:
font-family: "Ponomar", system-ui;
    font-weight: 400;
    font-style: normal;

texto:
font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-size: 1.1rem;
*/

:root {
    --blanco: #FFFFFF;
    --arena: #b8af9e;
    --verde: #596851;
    --negroP: #000;
    --secundario: #272322;
    --gristranspa: rgba(137,137,137,0.5);
}

* a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body{
    background-color: var(--arena);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px;
    font-size: 1.5em;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

nav {
    background: linear-gradient(135deg, var(--negroP), var(--secundario));
    padding: 2rem;
}

.logo{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo img {
    height: 4rem;
    margin: 3rem;
    width: auto;
}

.derecha{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.derecha a {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    color: var(--blanco);
    font-size: 1.3rem;
}

.services-dropdown {
    position: relative;
    display: inline-block;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-size: 2rem;
}

.services-btn {
    background-color: var(--fondo_claro); 
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.services-btn:hover {
    background-color: var(--blanco);
    color: var(--negroP);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #ddd; 
}

.services-dropdown:hover .dropdown-content {
    display: block;
}

.servicios-contactos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contacto a {
    padding: 1rem;
    font-size: 1rem;
}

.Empecemos {
    font-family: "Ponomar", system-ui;
    font-weight: 400;
    font-style: normal;
    color: var(--blanco);
    font-size: 6rem;
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
}

/* --- SECCIÓN FOTO Y VIDEO --- */
.media-section{
    margin: 1rem;
}

.media-section .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    color: var(--secundario);
    font-family: "Ponomar", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
}

.gallery-item video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}


/* SUBTÍTULOS */
.services,
.process {
    background-color: var(--secundario);
    color: var(--blanco);
    padding: 2rem;
    border-radius: 10%;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.services ul,
.process ol {
    color: var(--blanco);
    margin-left: 20px;
    line-height: 1.7;
}

.portfolio-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--secundario);
}

/* GALERÍA */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    background-color: var(--secundario);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-desc {
    margin-top: 10px;
    color: var(--blanco);
    font-size: 0.95rem;
}

/* Footer */

footer {
    background: linear-gradient(135deg, var(--negroP), var(--secundario));
    color: var(--blanco);
    padding: 3rem 2rem;
    font-family: "Quicksand", sans-serif;
}

footer a{
    text-decoration: none;
    color: var(--blanco);
    margin: 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-contact, 
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-contact svg, 
.footer-social svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-legal {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-legal a {
    margin: 0 10px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--blanco);
}

/* Media Queries Responsivas */

@media only screen and (max-width: 480px) {
    .logo img {
        height: 3rem;
        margin: 1rem;
    }

    .Empecemos {
        font-size: 2.5rem;
        padding: 1rem;
    }

    .derecha {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-dropdown {
        font-size: 1.2rem;
    }

    .media-section {
        padding: 30px 10px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .services, .process {
        padding: 15px;
        margin: 20px auto;
    }

    .services h3, .process h3 {
        font-size: 20px;
    }

    .services ul li, .process ol li {
        font-size: 15px;
    }

    .portfolio-title {
        font-size: 22px;
        margin: 30px 0 15px 0;
    }

    .media-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        padding: 10px;
    }

    .gallery-desc {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact, .footer-social {
        margin-top: 1.5rem;
    }

    .footer-logo img {
        height: 70px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .logo img {
        height: 3.5rem;
        margin: 1.5rem;
    }

    .Empecemos {
        font-size: 3.5rem;
        padding: 1.5rem;
    }

    .derecha {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .media-section {
        padding: 40px 15px;
    }

    .section-description {
        font-size: 17px;
    }

    .services, .process {
        padding: 18px;
        margin: 25px auto;
    }

    .services h3, .process h3 {
        font-size: 22px;
    }

    .portfolio-title {
        font-size: 24px;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .footer-logo img {
        height: 75px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .logo img {
        height: 4rem;
    }

    .Empecemos {
        font-size: 4.5rem;
    }

    .derecha {
        gap: 2rem;
    }

    .media-section {
        padding: 50px 20px;
    }

    .services, .process {
        margin: 30px auto;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-logo img {
        height: 78px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .logo img {
        height: 4.5rem;
    }

    .Empecemos {
        font-size: 5rem;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media only screen and (min-width: 1280px) {
    .logo img {
        height: 5rem;
    }

    .Empecemos {
        font-size: 6rem;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media only screen and (max-width: 1023px) {
    nav {
        padding: 1.5rem;
    }

    .services-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .dropdown-content {
        min-width: 140px;
    }

    .dropdown-content a {
        padding: 10px 14px;
        font-size: 14px;
    }

    .contacto a {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .section-description {
        font-size: 16px;
    }

    .services h3, .process h3 {
        font-size: 20px;
    }

    .services ul li, .process ol li {
        font-size: 15px;
    }

    .portfolio-title {
        font-size: 22px;
    }

    .footer-logo img {
        height: 70px;
    }
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
    .Empecemos {
        font-size: 3rem;
    }

    .derecha {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .media-section {
        padding: 30px 15px;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}
