* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Material 3 Color Tokens */
    --md-sys-color-primary: #8A7ED8;
    --md-sys-color-on-primary: #ffffff;
    --md-sys-color-primary-container: #eaddff;
    --md-sys-color-on-primary-container: #282C40;
    --md-sys-color-secondary: #4946A6;
    --md-sys-color-on-secondary: #ffffff;
    --md-sys-color-secondary-container: #e8eaef;
    --md-sys-color-on-secondary-container: #1d192b;
    --md-sys-color-tertiary: #F2A007;
    --md-sys-color-on-tertiary: #ffffff;
    --md-sys-color-surface: #fef7ff;
    --md-sys-color-on-surface: #1c1b1f;
    --md-sys-color-surface-variant: #DAAC55;
    --md-sys-color-on-surface-variant: #49454f;
    --md-sys-color-outline: #79747e;
    --md-sys-color-outline-variant: #cab6d6;
    --md-sys-color-background: #ffffff;
    --md-sys-color-on-background: #282C40;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--md-sys-color-on-background);
    line-height: 1.6;
}

.onlydesktop{
    display: block;
}

/* Header Navigation */

.header-mainbar{
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    backdrop-filter: blur(0px);
    padding: 16px 24px !important;
    height: 80px;
}

.img-menu{
    display: none;
    cursor: pointer;    
    padding-left: 20px;    
    color: white;  
}

.img-menu-open{  
    display: none;
    position: absolute;
    cursor: pointer;
    color:var(--md-sys-color-surface-variant);
    top: 20px;
    padding-left: 18px;
    z-index: 15;    
}

aside.display-nav {
    left: 0px;  
    transition: 0.3s ease-in-out; 
}


.header-logomain{
    left: 60px;
    position: absolute; 
    z-index: 11;      
}

.nav-logo{    
    width: 100%;
    height: 60px;
    padding-left: 80px;
    object-fit: contain;
    object-position: center center;
}

/* .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
} */

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--md-sys-color-primary);
}

/* Desktop Navigation */


.container-menu{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* 0.5);
    padding-left: calc(var(--bs-gutter-x)* 0.5);
    margin-right: auto;
    margin-left: auto;
}

.d-flex {
    display: flex !important;
}

.menu-horizontal-wrapper {   
    flex: 0 1 100%;  
}

.menu:not(.menu-no-animation) .menu-horizontal-wrapper .menu-inner {
    transition: margin 0.3s;
}

.menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 100%;
    
}

.profile-icon{
    flex-basis: 100%;
    align-items: center !important;
    right: 50px;
    position: absolute;
    cursor: pointer;
    z-index: 11;
    color: "white";
    font-size: "40px";
}

.padmakos{
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 100px;
    padding-right: 100px;
}

.menu-horizontal {
    z-index: 10;
    flex-direction: row;
    left: 0px;
    width: 100%;
    backdrop-filter: blur(6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: 300px;
    gap: 8px;
}

.nav-item {
    position: relative;    
}

.nav-link {
    text-decoration: none;
    color:#ffffff;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 50px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);    
    position: relative;
}

.active{
    color:var(--md-sys-color-tertiary);    
}

.nav-link:hover {
    background-color: #ffffff;
    color: var(--md-sys-color-on-primary-container);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 125%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    margin-top: 8px;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background-color: var(--md-sys-color-secondary-container);
    color: var(--md-sys-color-on-secondary-container);
}

/* CTA Button */
.cta-button {
    background-color: var(--md-sys-color-surface-variant);
    color: var(--md-sys-color-on-surface);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 19px;
    text-decoration: none;    
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(103, 80, 164, 0.3);
}

.cta-button:hover {
    box-shadow: 0 4px 16px rgba(103, 80, 164, 0.4);
    transform: translateY(-2px);
}

/* Error404 */
.container404{
    width: 100%;
    background-color: #282C40;    
    text-align: center;
    color: white;
    padding: 2rem;    
    position: relative;    
}

.error-code {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.error-message {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.errorheader{
    width: 100%;
    height: 60px;
    text-align: center;
}

.errorheader > img{
    height: 60px;    
}

.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #F2A007;
    color: white;
    box-shadow: 0 8px 15px rgba(238, 90, 36, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    box-shadow: 0 15px 25px rgba(238, 90, 36, 0.6);
}


.error-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}


/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;    
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle:hover {
    background-color: var(--md-sys-color-secondary-container);
}

.mobile-toggle .material-icons {
    font-size: 24px;    
    color: #ffffff;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--md-sys-color-surface);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    padding: 24px;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.close-sidebar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-sidebar:hover {
    background-color: var(--md-sys-color-secondary-container);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 16px;
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);    
}

.sidebar-nav a:hover {
    background-color: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-on-primary-container);
}

.sidebar-submenu {
    margin-left: 16px;
    margin-top: 8px;
}

.sidebar-submenu a {
    padding: 12px 16px;
    font-size: 14px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main-content {    
    min-height: 200vh;
}

.main-faqs{
    margin-top: 40px;    
    text-align: left;
}

.formcontact{
    background-color: var(--md-sys-color-on-primary-container);
    padding: 20px 50px;
    padding-bottom: 100px;
    color: white;
    text-align: center;
    position: relative;
}

.formcontact-title{
    padding-top: 30px;
    font-family: "Plus Jakarta Sans";
    color:var(--md-sys-color-primary);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 40px;       
}

.formcontact-subtitle{
    font-family: "Plus Jakarta Sans";
    color:var(--md-sys-color-on-primary);
    font-size: 1.4rem;       
    font-weight: 200;    
    line-height: 25px;
    padding-top: 20px;    
    margin-bottom: 50px;   
}

.footer{
    border-top: 22px solid var(--md-sys-color-tertiary);
    background-color: var(--md-sys-color-on-primary-container);
    padding: 25px;
    color: white;
    text-align: center;
    position: relative;
}

.footer-logo{  
    width: 140px;
    height: auto;
}

#wrapper.active{
    display: block;
    background-color: rgba(0, 0, 0, 0.32);
}


.bannertext1{    
    top:-65px;    
    font-family: "Plus Jakarta Sans";
    font-size: 58px;
    font-weight: bold;
    line-height: 60px;    
    margin-block-end:1rem;
    margin-block-start:.5rem
}

.bannertext2{
    margin-top: 20px;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-weight: 200;
    line-height: 30px;
    padding-right: 70px;
}

.whymakos-title{
  font-family: "Plus Jakarta Sans";
  padding-left: 150px;
  padding-right: 150px;
  font-size: 52px;
  font-weight: bold;
  line-height: 60px;   
}

.socialmedialinks{
    width: 100%;
    list-style: none;    
    display: flex;
    justify-content: center;
    gap: 20px;
    color:#eaddff
}

.social-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon  > svg {
    fill: currentColor;
}

.social-icon  > svg:hover {
    animation: colorShift 0.6s forwards;
}

.footers-links{    
    list-style: none;
    padding-top: 12px;
    margin: 0;
    color:#eaddff
}

.footer-text{
    margin-top: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color:#ffffff;
    cursor: pointer;    
}

.footer-text:hover{    
    text-decoration: none;
    color:#F2A007
}

.footer-copy{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color:#ffffff;
    cursor: pointer;    
}


.footers-links > li > a{
    padding: 10px;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color:#ffffff
}

.whatsapp-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-icon{
    display: block;
    position: relative;
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .15);
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjU2IiB3aWR0aD0iMjU2IiB2aWV3Qm94PSItMjMgLTIxIDY4MiA2ODIuNjY3IiBmaWxsPSIjZmZmIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik01NDQuMzg3IDkzLjAwOEM0ODQuNTEyIDMzLjA2MyA0MDQuODgzLjAzNSAzMjAuMDUxIDAgMTQ1LjI0NiAwIDIuOTggMTQyLjI2MiAyLjkxIDMxNy4xMTNjLS4wMjMgNTUuODk1IDE0LjU3OCAxMTAuNDU3IDQyLjMzMiAxNTguNTUxTC4yNSA2NDBsMTY4LjEyMS00NC4xMDJjNDYuMzI0IDI1LjI3IDk4LjQ3NyAzOC41ODYgMTUxLjU1MSAzOC42MDJoLjEzM2MxNzQuNzg1IDAgMzE3LjA2Ni0xNDIuMjczIDMxNy4xMzMtMzE3LjEzMy4wMzUtODQuNzQyLTMyLjkyMi0xNjQuNDE4LTkyLjgwMS0yMjQuMzU5ek0zMjAuMDUxIDU4MC45NDFoLS4xMDljLTQ3LjI5Ny0uMDItOTMuNjg0LTEyLjczLTEzNC4xNi0zNi43NDJsLTkuNjIxLTUuNzE1LTk5Ljc2NiAyNi4xNzIgMjYuNjI5LTk3LjI3LTYuMjctOS45NzNjLTI2LjM4Ny00MS45NjktNDAuMzItOTAuNDc3LTQwLjI5Ny0xNDAuMjgxLjA1NS0xNDUuMzMyIDExOC4zMDUtMjYzLjU3IDI2My42OTktMjYzLjU3IDcwLjQwNi4wMjMgMTM2LjU5IDI3LjQ3NyAxODYuMzU1IDc3LjMwMXM3Ny4xNTYgMTE2LjA1MSA3Ny4xMzMgMTg2LjQ4NGMtLjA2MiAxNDUuMzQ0LTExOC4zMDUgMjYzLjU5NC0yNjMuNTk0IDI2My41OTR6bTE0NC41ODYtMTk3LjQxOGMtNy45MjItMy45NjktNDYuODgzLTIzLjEzMy01NC4xNDgtMjUuNzgxLTcuMjU4LTIuNjQ1LTEyLjU0Ny0zLjk2MS0xNy44MjQgMy45NjktNS4yODUgNy45My0yMC40NjkgMjUuNzgxLTI1LjA5NCAzMS4wNjZzLTkuMjQyIDUuOTUzLTE3LjE2OCAxLjk4NC0zMy40NTctMTIuMzM2LTYzLjcyNy0zOS4zMzJjLTIzLjU1NS0yMS4wMTItMzkuNDU3LTQ2Ljk2MS00NC4wODItNTQuODkxLTQuNjE3LTcuOTM3LS4wMzktMTEuODEyIDMuNDc3LTE2LjE3MiA4LjU3OC0xMC42NTIgMTcuMTY4LTIxLjgyIDE5LjgwOS0yNy4xMDVzMS4zMi05LjkxOC0uNjY0LTEzLjg4M2MtMS45NzctMy45NjUtMTcuODI0LTQyLjk2OS0yNC40MjYtNTguODQtNi40MzctMTUuNDQ1LTEyLjk2NS0xMy4zNTktMTcuODMyLTEzLjYwMi00LjYxNy0uMjMtOS45MDItLjI3Ny0xNS4xODctLjI3N3MtMTMuODY3IDEuOTgtMjEuMTMzIDkuOTE4LTI3LjczIDI3LjEwMi0yNy43MyA2Ni4xMDUgMjguMzk1IDc2LjY4NCAzMi4zNTUgODEuOTczIDU1Ljg3OSA4NS4zMjggMTM1LjM2NyAxMTkuNjQ4YzE4LjkwNiA4LjE3MiAzMy42NjQgMTMuMDQzIDQ1LjE3NiAxNi42OTUgMTguOTg0IDYuMDMxIDM2LjI1NCA1LjE4IDQ5LjkxIDMuMTQxIDE1LjIyNy0yLjI3NyA0Ni44NzktMTkuMTcyIDUzLjQ4OC0zNy42OCA2LjYwMi0xOC41MTIgNi42MDItMzQuMzc1IDQuNjE3LTM3LjY4NC0xLjk3Ny0zLjMwNS03LjI2Mi01LjI4NS0xNS4xODQtOS4yNTR6bTAgMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) center / 44px 44px no-repeat #25D366;
}

.footer-copyright{
    text-align: center;    
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

@keyframes colorShift {
    0%   { fill: #ffffff; }
    50%  { fill: #DAAC55; }
    100% { fill: #4946A6; }
}


.animated-button {
    background-color: var(--md-sys-color-surface-variant);
    color:var(--md-sys-color-on-primary-container);    
    font-weight: 400;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease; 
}

.animated-button:hover {    
    color:#ffffff;
    transform: scale(1.2); 
}


.reviewcard{
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: transparent;
    background-image: linear-gradient(41deg, #4946a6 13%, #f2a007 100%);
}

.reviewImg{
    width: 100%;
    border-radius: 20px;
}

.reviewLogo{
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;  
}

.reviewbody
{
    font-family: "Plus Jakarta Sans";
    color:#ffffff;
    font-size: 17px;
    line-height: 30px;
}

.reviewfootercustomer
{
    padding-top: 25px;
    font-family: "Plus Jakarta Sans";
    color:#ffffff;
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
}

.reviewfooterlocal{    
    font-family: "Plus Jakarta Sans";
    color:#ffffff;
    margin-top: 5px;
    font-size: 16px;    
    line-height: 25px;
}

.whymakos-section {
    background-color: #ffffff;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-img{
  width: 90%;
}

.why-card{
  background-color: var(--md-sys-color-on-primary-container);
  margin: 20px 0px 0px 0px;
  padding-top: 35px;  
  padding-bottom: 25px;  
  padding-left: 25px;  
  padding-right: 25px;    
  height: 400px;
  color:#ffffff;
  border-radius: 16px 16px 16px 16px;
}

.why-card:hover {
  color:#8A7ED8;
}

.why-card-body{
  text-align: left;
  box-sizing: border-box;  
}

.why-card-bodytitle{
  font-size: 35px;  
  font-family: "Plus Jakarta Sans";    
  font-weight: bold;
  line-height: 40px;  
  overflow-wrap: anywhere;  
}

.why-card-bodycontent{
  padding-top: 15px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Roboto";
  color:#ffffff;  
  line-height: 30px;  
}

.padingtag{
    padding-left: 200px;
    padding-right: 200px;
}

.advantage-title {
    font-size: 45px;
    line-height: 40px;        
}

/* Móvil pequeño: hasta 480px */
@media (max-width: 480px) {    
    .img-menu{
        display: block;
    }
    
    .img-menu-open{  
        display: block;
    }
    .header-logomain{
        display: none;
    }

    .nav-menu {
        display: contents;
    }

    .nav-item{
        text-align: left;
        padding: 5px;
    }

    .nav-link{
        align-items: flex-start;
        border-radius: .5rem;
        color: var(--md-sys-color-secondary);
        flex: 0 0 auto;
        flex-direction: column;
        justify-content: flex-start;
        list-style: none;
        margin: 0;
    }

    
    .dropdown-content {
        z-index: 1000;
        top: 0;        
    }

    .onlydesktop{
        display: none;
    }


    .nav-logo{
        padding-left: 0px;        
    }

    .mobile-toggle {
        display: block;
    }

    .menu-horizontal {
        position: absolute;
        top: 0;
        left:-300px;
        z-index: 100;
        padding-top: 60px;
        padding-left: 20px;
        width: 300px;
        height: 100vh;
        background-color: white;
        transition: 0.3s ease-in-out; 
        border-radius: 0px 20px 20px 0px;  
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: hidden; 
        overflow-y: scroll;     
    }

    .menu-horizontal-wrapper{
        position: fixed;  
        top:80px;
        width: 90%;
        height: 80%;
    }


    .section-title {
        font-size: 36px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .padmakos{
        padding-left: 20px;
        padding-right: 20px;
    }

    .bannertext1{    
        font-size: 45px;
        line-height: 45px;            
    }

    .bannertext2{
        font-size: 20px;
        line-height: 30px; 
        font-weight: 300;
    }

    .why-card-bodytitle{
        font-size: 35px;  
        font-family: "Plus Jakarta Sans";    
        font-weight: bold;
        line-height: 40px;  
        overflow-wrap: anywhere;  
    }

    .whymakos-title{
        font-size: 35px;
        line-height: 40px;
        padding-left: 0px;
        padding-right: 0px;    
        text-align: start;
    }    

    .why-card-bodytitle{
        font-size: 30px;  
        font-family: "Plus Jakarta Sans";    
        font-weight: bold;
        line-height: 35px;  
        overflow-wrap: anywhere;  
    }

    .padingtag{
        padding-left: 10px;
        padding-right: 10px;
    }

}

/* Tablet: 481px a 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .img-menu{
        display: block;
    }
    
    .img-menu-open{  
        display: block;
    }
    .header-logomain{
        display: none;
    }

    .nav-menu {
        display: contents;
    }

    .nav-item{
        text-align: left;
        padding: 5px;
    }

    .nav-link{
        align-items: flex-start;
        border-radius: .5rem;
        color: var(--md-sys-color-secondary);
        flex: 0 0 auto;
        flex-direction: column;
        justify-content: flex-start;
        list-style: none;
        margin: 0;
    }

    
    .dropdown-content {
        z-index: 1000;
        top: 0;        
    }

    .onlydesktop{
        display: none;
    }


    .nav-logo{
        padding-left: 0px;        
    }

    .mobile-toggle {
        display: block;
    }

    .menu-horizontal {
        position: absolute;
        top: 0;
        left:-300px;
        z-index: 100;
        padding-top: 60px;
        padding-left: 20px;
        width: 300px;
        height: 100vh;
        background-color: white;
        transition: 0.3s ease-in-out; 
        border-radius: 0px 20px 20px 0px;  
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: hidden; 
        overflow-y: scroll;     
    }

    .menu-horizontal-wrapper{
        position: fixed;  
        top:80px;
        width: 90%;
        height: 80%;
    }


    .section-title {
        font-size: 36px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .padmakos{
        padding-left: 20px;
        padding-right: 20px;
    }

    .bannertext1{    
        font-size: 45px;
        line-height: 45px;            
    }

    .bannertext2{
        font-size: 20px;
        line-height: 30px; 
        font-weight: 300;
    }

    .whymakos-title{
        font-size: 35px;
        line-height: 40px;
        padding-left: 0px;
        padding-right: 0px;    
        text-align: start;
    }

    .why-card-bodytitle{
        font-size: 25px;  
        font-family: "Plus Jakarta Sans";    
        font-weight: bold;
        line-height: 35px;  
        overflow-wrap: anywhere;  
    }
}

/* Desktop: 769px a 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .img-menu{
        display: block;
    }
    
    .img-menu-open{  
        display: block;
    }
    .header-logomain{
        display: none;
    }

    .nav-menu {
        display: contents;
    }

    .nav-item{
        text-align: left;
        padding: 5px;
    }

    .nav-link{
        align-items: flex-start;
        border-radius: .5rem;
        color: var(--md-sys-color-secondary);
        flex: 0 0 auto;
        flex-direction: column;
        justify-content: flex-start;
        list-style: none;
        margin: 0;
    }

    
    .dropdown-content {
        z-index: 1000;
        top: 0;        
    }

    .onlydesktop{
        display: none;
    }


    .nav-logo{
        padding-left: 0px;        
    }

    .mobile-toggle {
        display: block;
    }

    .menu-horizontal {
        position: absolute;
        top: 0;
        left:-300px;
        z-index: 100;
        padding-top: 60px;
        padding-left: 20px;
        width: 300px;
        height: 100vh;
        background-color: white;
        transition: 0.3s ease-in-out; 
        border-radius: 0px 20px 20px 0px;  
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: hidden; 
        overflow-y: scroll;     
    }

    .menu-horizontal-wrapper{
        position: fixed;  
        top:80px;
        width: 90%;
        height: 80%;
    }


    .section-title {
        font-size: 36px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .padmakos{
        padding-left: 20px;
        padding-right: 20px;
    }

    .bannertext1{    
        font-size: 45px;
        line-height: 45px;            
    }

    .bannertext2{
        font-size: 20px;
        line-height: 21px; 
    }

    .whymakos-title{        
        font-size: 35px;
        line-height: 40px;
        padding-left: 0px;
        padding-right: 0px;    
    }

    .why-card-bodytitle{
        font-size: 25px;  
        font-family: "Plus Jakarta Sans";    
        font-weight: bold;
        line-height: 35px;  
        overflow-wrap: anywhere;  
    }
}

/* Desktop grande: más de 1024px */
@media (min-width: 1025px) {
  
}


@keyframes menuDropdownShow {
  0% {
      opacity: 0;
      transform: translateY(-0.5rem);
  }

  100% {
      opacity: 1;
      transform: translateY(0);
  }
}