/* estilos.css */
:root {
    --green-dark: rgb(13, 104, 48);
    --green-light: #0a8e41;
    --text-color: #1d0202;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-effect: translateY(-6px);
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-color);
}

/* --- Navbar --- */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
}

.logo {
    display: none; /* Oculto en móviles, se muestra en desktop */
}

.title {
    font-size: 30px;
    margin: 10px 0 10px 20px;
}

.hamburger {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.ul-nav {
    display: none;
    list-style: none;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.ul-nav.show {
    display: flex;
}

.ul-nav li {
    margin: 10px 0;
    text-align: center;
   
}

.ul-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 22px;
}

.ul-nav a:hover {
    color: var(--green-light);
    
}


.main {
  max-width: 800px;
  margin: 2em auto;
  padding: 0 1em;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1, h2 {
  color: var(--green-dark);
}

ul {
  padding-left: 1.2em;
}

.review-container {
    width: 300px;
    margin: 20px auto;
    padding: 20px 20px;
    text-align: center;
    background: linear-gradient(45deg, #1de34f 0%, #eff5f1, #e06546 100%);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e0e6ed;
}

.review-container:hover {
    transform: rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dgt-notas {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #4285F4 0%, #34a853 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
    letter-spacing: 0.5px;
}
.icono-dgt {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin-right: 10px;
}
.footer {
    background: #092d0a;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-column {
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column p {
    margin: 5px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: font-size 0.3s;
}

.footer-column a:hover {
    font-size: 1.1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.ticktok {
    width: 55px;
    height: 55px;
}

.telefono {
    color: aliceblue;
    text-decoration: none;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

/* --- Responsive para Tablet y Desktop (a partir de 651px) --- */
@media screen and (min-width: 675px) {
    .navbar {
        justify-content: space-between;
    }

    .logo {
        display: block;
        width: 80px;
        height: 80px;
        margin-left: 25px;
        border: 4px solid var(--green-dark);
        border-radius: 50px;
    }

    .title {
        margin-right: auto;
        margin-left: 20px;
        font-size: 45px;
    }

    .hamburger {
        display: none;
    }

    .ul-nav {
        display: flex !important;
        flex-direction: row;
        width: auto;
    }

    .ul-nav li {
        margin: 10px 20px;
    }

   
    
    .container-card {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
    }

    .card {
        max-width: 22rem;
    }

    .container-permiso {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .permiso, .requisitos {
        width: 45%;
    }

    .container-servicios {
        height: 450px;
        padding-left: 50px;
    }
    
    .Servicios {
        width: 270px;
        height: 410px;
    }

    .app-reviews-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
    }

    .contenedor-iconos {
        width: 250px;
    }

    .review-container {
        width: 480px;
    }
    
    .footer-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
        margin: 10px;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}