/*---------------------------------------
  GENERAL           
-----------------------------------------*/

:root {
--color1: #FFD0D0;
--color1-bold: #3AA6B9;
--color2: #FF9EAA;
--color3: #100303;
--color4: #F7F7F7;
--color5: white;
--color6: black;
--max-width-laptop: 1000px;
--scroll-padding-web: 148px;
--scroll-padding-phone: 250px;
--padding-left-right: 25px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    scroll-padding-top: var(--scroll-padding-web);
    scroll-behavior: smooth;
  }

body {
    font-family: "Ruda", sans-serif;
}

/*---------------------------------------
  WHATSAPP      
-----------------------------------------*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:13px;
}

/*---------------------------------------
  HEADER            
-----------------------------------------*/

.container-ubicacion {
    max-width: var(--max-width-laptop);
    margin: 0 auto;
    min-height: 50px;
    padding: 0;
    display: flex;
    font-family: "Open Sans", sans-serif;
    color: var(--color4);
    font-size: 12px;
    animation: slide-in 800ms;
    
}

.ubicacion-direccion, .ubicacion-direccion-telefono {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.ubicacion-direccion, .ubicacion-direccion-telefono > a {
    color:var(--color4);
}

.ubicacion-svg,.telefono-svg {
    padding-right: 8px;
}

.container-header {
    max-width: var(--max-width-laptop);
    width: 100%;
    min-height: 100px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 0.1px;
    font-family: "Ruda", sans-serif;
}

.logo h1 {
    font-size: 32px;
    color: var(--color1-bold);
    font-weight: normal;
}

.logo h2 {
    font-size: 11.5px;
    color: var(--color3);
    padding-top: 3px;
    text-transform: uppercase;
}

.navbar-web {
    font-family: "Ruda", "Open Sans", sans-serif;
    font-weight: 400;
    letter-spacing: -0.2px;
    font-size: 13px;
    text-align: center;
}

.navbar-web > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}

.navbar-web > ul > li {
    text-decoration: none;
    padding: 12px 0 12px 24px;
}

.navbar-mobile {
    display: none;
}

/*---------------------------------------
  SECTION - PADDING      
-----------------------------------------*/

  .container-parent {
    width: 100%;
    height: 100%;
  }

  .section-padding-direccion {
    background-color: var(--color1-bold);
    padding: 0 var(--padding-left-right) 0;
}

.section-header {
    background-color: var(--color4);
    padding: 0 var(--padding-left-right) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 10;
}

.section-padding {
    padding: 20px var(--padding-left-right);
}

.section-padding-image {
    padding: 40px var(--padding-left-right) 55px;
    background-image: url(images/Doctor-Quilmes_2000px.webp);
    background-size: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter:grayscale(20%);
    z-index: 0;
    animation: fade-in 1s linear;
}

.overlay {
    border-image-source: linear-gradient(to right, var(--color1) 25%, transparent, transparent);
    border-image-slice: fill 1;
}

.section-no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.section-padding-color {
    padding: 55px var(--padding-left-right) 55px;
    background-color: var(--color2);
    margin: 0;
    border: 0;
}

/*---------------------------------------
  BUTTONS       
-----------------------------------------*/

.button {
    color: black;
    box-shadow: inset 0 0 0 1px var(--color3);
    background-color: var(--color4);
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    border: 0;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.125em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 0.72rem;
    max-width: 20rem;
    height: 3.75em;
    line-height: 3.75em;
    border-radius: 3.75em;
    padding: 0 2.5em;
    text-overflow: ellipsis;
    overflow: hidden;
    animation: fade-in 2s linear;
    margin: 12px 0 0;
}

.button:hover {
    color: var(--color4) !important;
    box-shadow: inset 0 0 0 1px var(--color3);
    background-color: var(--color3);
    
}

.btn-header {
    color: var(--color3);
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
  }

  .btn-header:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--color1-bold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s linear;
  }

  .btn-header:hover:before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .btn-header:hover {
    text-shadow: 0.5px 0 var(--color3);
    transition: all 1s ease;
  }

  .btn-ubicacion-direccion:hover {
    text-shadow: 0.5px 0 var(--color4);
  }

/*.btn-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -3px;
    background: var(--color1-bold);
  }

  .btn-header:hover {
    color: var(--color3);
  }

  .btn-header::after {
  transform: scale(0, 1);
  transition: transform 0.3s ease;
  }

  .btn-header:hover::after {
    transform: scale(1, 1);
}
*/
/*---------------------------------------
  BODY - DOCTOR        
-----------------------------------------*/

.container-doctor {
    max-width: var(--max-width-laptop);
    width: 100%;
    display: flex;
    margin: 0 auto;
}

.doctor-texto {
    min-width: 50%;
    flex-wrap: wrap;
    
}

.doctor-texto > h3 {
    font-size: 34px;
    padding: 12px 0 12px;
    text-wrap:pretty;
    font-weight:900;
    color: var(--color3);
    letter-spacing: -1px;
    animation: fade-in 2s linear;
    line-height: 37px;
}

.doctor-texto > p {
    line-height: 19px;
    padding: 5px 0 5px;
    font-size: 15px;
    font-weight: 400;
    text-wrap: pretty;
    letter-spacing: -0.2px;
    animation: fade-in 2s linear;
}

.divider-hero {
    width: auto;
    height: 1px;
    background-color: var(--color3);
    margin: 10px auto 15px;
    animation: fade-in 2s linear;
}

.doctor-foto {
    min-width: 50%;
    flex-wrap: wrap;
}

/*---------------------------------------
  BODY - CONSULTORIOS       
-----------------------------------------*/

.container-direccion {
    max-width: var(--max-width-laptop);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: var(--color4);
}

.container-direccion > h3 {
    font-family: "Ruda", sans-serif;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: bold;
}

.container-direccion > h4 {
    font-size: 17px;
    font-weight: normal;
    text-wrap: pretty;
}

.container-direccion > p {
    font-size: 16px;
    font-weight: normal;
    text-wrap: pretty;
}

.container-direccion > * > a {
    color: var(--color4)
}

.divider {
    width: 280px;
    height: 0.5px;
    background-color: var(--color4);
    margin: 12px auto 20px auto;
}

/*---------------------------------------
  VARICES / CELULITIS     
-----------------------------------------*/

.container-articulos {
    display: flex;
    justify-content: center;
    margin: 0 auto 0;
    max-width: var(--max-width-laptop);
    width: 100%;
    padding: 25px 0 0 0;
}

.articulos-divider {
    display: flex;
    justify-content: center;
    margin: 0 auto 0;
    max-width: var(--max-width-laptop);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    height:10px;
}

.titulo {
    width:35%;
}

.titulo > h3 {
    font-size: 24px;
    font-weight: bold;
    padding-right: 10px;
}

.info {
    width: 65%;
    font-size: 14px;
    line-height:18px;
}

.info * ul {
    list-style:square;
}

dd {
    line-height: 21px;
}

dd > p {
    margin-top: 5px;
    margin-bottom: 20px;
}

dl dt {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
}

dl dd {
    margin-left: 40px;
    margin-bottom: 25px;
}

.columns {
    columns: 2 auto;
}

/*---------------------------------------
  FOOTER      
-----------------------------------------*/

.container-footer {
    display: flex;
    flex-direction: column;
    background-color: var(--color3);
    width: 100%;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding: 25px 10px;
    font-size: 14px;
    line-height: 22px;
}

.container-footer > * > a > img {
    width: 108px;
    filter:invert(1);
    padding: 5px 0 0 0;
}

/*---------------------------------------
  KEYFRAMES      
-----------------------------------------*/

@keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }

@keyframes fade-out {
    25% {opacity: 1;}
    100% {opacity: 0;}
    }

@keyframes slide-in {
    from {transform: translateY(-100%);}
    to {transform: translateY(0%);}
    }

@keyframes appear {
    from {opacity: 0; scale: 0.5;}
    to {opacity: 1; scale: 1;}
    }


/*---------------------------------------
  MEDIA QUERIES       
-----------------------------------------*/

@media (max-width:790px){
    html {
        scroll-padding-top: var(--scroll-padding-phone);
      }
    .container-ubicacion {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: auto;
        text-wrap: pretty;
    }
    .ubicacion-direccion, .ubicacion-direccion-telefono {
        padding: 2px 40px;
    }
    .ubicacion-direccion, .ubicacion-svg {
        display: none;
    }
    .container-header {
        flex-direction: column;
    }
    .logo {
        text-align: center;
        padding: 20px 0 10px 0;
    }
    .logo h2 {
        padding-top: 8px;
        font-size: 11.5px;
    }
    .navbar-web {
        display: none;
        font-size: 14px;
        padding-bottom: 14px;
       /* display: none;*/ 
    } 
    .navbar-web > ul > li {
        padding: 3px 10px;
    } 
    .section-padding-image {
        padding-top: 22px;
        padding-bottom: 22px;
        filter:grayscale(10%);
       /* background-image: linear-gradient(to bottom, var(--color2) 15%, var(--color4)); */
       background-image: url(images/Doctor-Quilmes_850px.webp);
        background-position: top center;
    }
    .overlay {
        border-image-source: linear-gradient(to top, var(--color1) 50%, transparent);
        border-image-slice: fill 1;
    }
    .doctor-texto > h3 {
        font-size: 28px;
        padding: 20px 0 10px;
        line-height: 34px;
    }
    .doctor-comision, .doctor-atencion {
        display: none;
    }
    .section-padding {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .container-direccion {
        width: 100%;
    }
    .container-direccion > h3 {
        font-size: 26px;
    }
    .container-direccion > h4 {
        font-size: 14px;
        font-weight: normal;
    }
    .container-direccion > p {
        font-size: 14px;
        font-weight: normal;
    }
    .section-padding-color {
        padding-top: 30px;
        padding-bottom: 30px;
        /* background-color: var(--color1-bold); */
    }
    .container-doctor {
        flex-direction: column;
    }
    .doctor-texto {
        width: 100%;
    }
    .doctor-foto {
        display:none;
    }
    .container-consultorios > h3 {
        text-align: center;
    }
    .container-direccion {
        text-align: center;
    }
    .container-articulos {
        flex-direction: column;
        padding: 15px 0 0 0;
    }
    .titulo {
        width: 90%;
        margin: auto;
        text-align: center;
    }
    .info {
        width: 92%;
        margin: auto;
        font-size: 13px;
    }
    .titulo > h3 {
        padding: 0 0 5px 0;
        font-size: 21px;
    }
    dd {
        line-height: 19px;
    }
    dl dt {
        text-align: center;
    }
    dl {
        margin: 0;
    }
    dl dd {
        margin-left: 0;
        margin-bottom: 25px;
    }
    .container-footer {
        padding: 20px 15px;
        font-size: 12px;
    }
    .container-footer > * > img {
        width: 94px;
    }
    .navbar-container {
        width: 100%;
        align-items: center;
    }
    .navbar-mobile {
        display: block;
        width: 100%;
        font-size: 12px;
        font-weight: 600;
        color: var(--color3);
        padding: 4px 0px 8px;
        align-items: center;
        justify-content: center;
        font-family: "Ruda", sans-serif;
        letter-spacing: -0.2px;
    }
    .navbar-mobile button.burger {
        background-color: var(--color1);
        width: 100%;
        border: 0;
        border-bottom: solid 0.5px var(--color2);
        text-align: left;
        padding: 3px 22px;
        cursor: pointer;
        user-select: none;
        touch-action: manipulation;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content:space-between;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-size: 10.5px;
        font-weight: 800;
        font-family: "Ruda", sans-serif;
        color: var(--color3);
    }
    .icon-svg {
        display: inline-block;
        vertical-align: middle;
    }
    .navbar-mobile button.burger:focus + ul {
        max-height: 400px;
        background-color: var(--color1);
        padding: 2px 0;
        margin-bottom: 7px;
    }
    .navbar-mobile ul.menu {
        list-style: none;
        text-align: center;
        margin: 5px 0;
        overflow: hidden;
        max-height: 0;
        transition: all 0.6s ease-in-out;
    }
    .navbar-mobile ul.menu > li {
        display: block;
        margin: 10px 0;
        padding: 2px 0;
        transition: all 0.2s ease;
        font-size: 12px;
      }
      .navbar-mobile ul.menu > li > a {
        color: var(--color3);
      }
      .navbar-mobile ul.menu > li > a:hover {
        text-shadow: 0.5px 0 var(--color3);
        transition: all 1s ease;
      }
    .button {
        font-size: 0.65rem;
        margin: 0 0 10px 0;
    }
}