/*
Theme Name: Sales Coach
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad de manera exclusiva para usted.
Version: 1.1
License: Privada
Tags: minimalista, responsive, modern, full width

Este tema tiene una licencia privada y el uso de esta es exclusiva de SA Publicidad.
*/

:root{
    --color1 : #24A3BF;
    --color1b :#24a3bf4e;
    --color2 : #ffffff;
    --color3 : #121212;
    --color4 : #F2A922;

    --font1 : "Oswald", sans-serif;
    --font2 : "Poppins", sans-serif;    
}
*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
}

.wrap{
    width: 90%;
    max-width: 1200px;
    margin:auto;
}


html, body{
    font-family:    var(--font2)
}

/* header */
header{
    position: absolute;
    background-color: var(--color2);
    top:0;
    left: 0;
    z-index: 98;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.ancla{
    transform: translateY(-100px);
}

header .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

header .logo{
    max-width: 180px;
}

header .logo img{
    width: 100%;
    margin:0 0 -5px 0;
}


@media(max-width:800px){
    header .wrap{
        display: block;
    }

    header .logo{
        width: 50%;
    }
}


/* btn-nav */
#btn-nav{
	display: none;
}

header label{
	display: none;
}


@media(max-width:800px){
	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:25px;
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		background: var(--color2);
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color1);
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

	#btn-nav:checked ~ label span:nth-child(1){
		transform: translateX(-50%) rotate(-45deg);
		top:21px;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		transform: translateX(-50%) rotate(45deg);
		top:21px;
	}
}


header nav{
    justify-content: right;
}

header nav ul{
    display: flex;
    justify-content: right;
}

header nav ul li{
    list-style: none;
}

header nav ul li a{
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color3);
    text-decoration: none;
    padding: 10px 20px;
}

@media(max-width:800px){
    header nav{
        justify-content: left;
        background-color: var(--color2);
        width: 60%;
        border-radius: 0 0 5px 0;
        top:0;
        left: 0;
        position: absolute;
        transform:translateX(-100%);
        transition: all .3s ease;
    }

    #btn-nav:checked ~ nav{
        transform: translateX(0);
    }

    header nav ul{
        display: block;
    }
    header nav ul li a{
        padding: 10px 20px;
        display: block;
    }
}

header nav ul li a:hover{
    text-decoration: underline;
}


/* home */
.home{
    position: relative;
    background-color: var(--color2);
    overflow: hidden;
    display: flex;
    padding: 200px 0 100px 0;
    align-items: center;
}


#ventana-modal-video {
    display: none;
    position: fixed;
    z-index: 999 !important;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }
  
  #contenido-ventana-modal-video {
    background: #fff;
    padding: 0px;
    max-width: 350px;
    width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #cerrar-ventana-modal-video {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
  }
  
  #video-contenedor {
    width: 100%;
    padding-top: 177.77%; /* 9:16 Aspect Ratio */
    position: relative;
  }
  
  #video-contenedor iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }

.home img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    opacity: .2;
    pointer-events: none;
}

.home .wrap{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.home .wrap article:nth-child(1){
    width: 55%;
    padding: 50px;
    color: var(--color3);
}

.home .wrap article .icon span{
    color: var(--color3);
    font-weight: 300 !important;
    font-size: 70px;
    font-weight: 600;
}

.home .wrap article h1{
    font-size: 2.5em;
    font-family: var(--font1);
}

.home .wrap article h2{
    font-size: 1em;
    font-family: var(--font2);
    font-weight: 500;
    text-align: center;
    margin:20px 0;
}

.home .wrap article ul{
    display: flex;
    gap:5%;
    margin:30px 0 0 0;
    list-style-type: none;
}

@media(max-width:800px){
    .home{
        padding: 100px 0 50px 0;
    }
    .home .wrap article:nth-child(1){
        width: 100%;
        padding: 50px 5%;
        text-align: center;
    }

    .home .wrap article h1{
        font-size: 2em;
        text-align: center;
    }

    .home .wrap article ul{
        display: block;
        text-align: center;
    }

    .home .wrap article ul li{
        width: 100%;
        margin:10px 0;
        display: block;
    }

    .home .wrap article ul li a{
        display: inline-block;
    }
}

.home .wrap article ul li a{
    text-decoration: none;
    color: var(--color3);
    padding: 16px 50px;
    border:solid 1px var(--color3);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    transition: background .3s ease;
}

.home .wrap article ul li a:hover{
    background-color: var(--color3);
    color: var(--color2);
}


.home .wrap article:nth-child(2){
    width:45%;
    padding: 20px 50px;
    color: var(--color3);
    background-color: rgba(0,0,0,.1);
    border-radius: 10px;
}

.home .wrap article:nth-child(2) input[type="text"],
.home .wrap article:nth-child(2) input[type="email"],
.home .wrap article:nth-child(2) textarea{
    font-family: var(--font2);
    border-radius: 5px;
    width: 100%;
    padding: 12px 2%;
    margin:0 0 10px 0;
    outline: none;
    border:none;
}

@media(max-width:800px){
    .home .wrap article:nth-child(2){
        width: 100%;
        padding: 50px 5%;
    }
}



.home .wrap article:nth-child(2) button,
.home .wrap article:nth-child(2) input[type="submit"]{  
    background-color: var(--color1);
    border:none;
    border-radius: 5px;
    cursor: pointer;
    padding: 16px 40px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color2);
    border:none !important;
}


.home .wrap article:nth-child(2) button:hover,
.home .wrap article:nth-child(2) input[type="submit"]:hover{    
    background-color: var(--color3);
}

/* marcas */
.marcas{
    background-color: var(--color1);
    padding: 50px 0;        
    color: var(--color2);
    text-align: center;
}

.marcas h2{
    font-size: 3em;
    margin:0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.marcas .gallery{
    display: flex;
    justify-content: space-between;
    gap:3%;
    align-items: center;
}

.marcas .gallery   article{
    max-width: 100px;
}

.marcas .gallery article img{
    width: 100%;
}

@media(max-width:800px){
    .marcas .gallery{
        flex-wrap: wrap;
        justify-content: center;
    }

    .marcas h2{
        font-size: 2em;
    }

    .marcas .gallery   article{
        width: 100px;
        height: 100px;
        margin:10px 0;
    }

    .marcas .gallery   article img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* banner-1 */
.banner-1{
    padding: 80px 0;
    background-color: var(--color2);
    color: var(--color3);
}
.banner-1 h2{
    font-size: 3em;
    margin:0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.banner-1 .gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:5%;
}


.banner-1 .gallery article{
    width: 30%;
    padding: 40px;
    text-align: center;
    box-shadow: 10px 20px 30px rgba(0,0,0,.1);
}

@media(max-width:800px){
    .banner-1 h2{
        font-size: 2em;
    }
    .banner-1 .gallery article{
        width: 100%;
        margin:10px 0;
    }
}

.banner-1 .gallery article .icon span{
    font-size: 50px;
    background-color: #f9f9f9;
    padding: 10px;
    display: inline-block;
    margin:0 auto 10px auto;
    border-radius: 5px;
}

.banner-1 .gallery article:nth-child(1) .icon span{
    color: #75917c;
}

.banner-1 .gallery article:nth-child(2) .icon span{
    color: #918475;
}

.banner-1 .gallery article:nth-child(3) .icon span{
    color: #8c7591;
}

.banner-1 .gallery article h3{
    font-size: 30px;
    opacity: .8;
    font-family: var(--font1);
    margin:0 0 10px 0;
    text-align: center;
}

.banner-1 .gallery article p{
    font-size: 16px;
    opacity: .8;
    text-align: justify;
}

/* banner-2 */
.banner-2{
    padding: 80px 0;
    background-color: #f0f0f0;
}

.banner-2 .wrap{
    display: flex;
    align-items: center;
}

.banner-2 .wrap article:nth-child(1){
    width: 80%;
    font-size: 30px;
    font-weight: 600;
}

.banner-2 .wrap article:nth-child(2)  .btn a{
    background-color: var(--color1);
    color: var(--color2);
    text-decoration: none;
    border-radius: 5px;
    padding: 17px 40px;
}

@media(max-width:800px){
    .banner-2 .wrap{
        flex-wrap: wrap;
    }
    .banner-2 .wrap article:nth-child(1){
        width: 100%;
        font-size: 2em;
        text-align: center;
    }

    .banner-2 .wrap article:nth-child(2){
        width: 100%;
    }
    .banner-2 .wrap article:nth-child(2)  .btn{
        display: table;
        margin:50px 0;
        display: flex;
        justify-content: center;
    }
}

/* banner-3 */
.banner-3 .wrap{
    display: flex;
    justify-content: space-between;
    gap:4%;
    padding: 80px 0;
    align-items: center;
}

.banner-3 .wrap article{
    width: 50%;
    padding: 0 50px;
}

.banner-3 .wrap article h2{
    font-size: 3em;
    color: var(--color3);
    opacity: .8;
    text-align: center;
    display: block;
}

@media(max-width:800px){
    .banner-3 .wrap {
        padding: 40px 0;
        flex-wrap: wrap;
    }

    .banner-3 .wrap article{
        width: 100%;
        margin:20px 0;
    }

    .banner-3 .wrap article h2{
        font-size: 2em;
    }
}

.banner-3 .wrap article p{
    font-size: 1em;
    line-height: 1.9em;
    color: var(--color3);
    opacity: .8;
    text-align: justify;
}

.banner-3 .wrap article img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
}

/* sibre-mi */
.sobre-mi{
    padding: 80px 0;
    background-color: var(--color2);
    color: var(--color3);
}

.sobre-mi .wrap{
    display: flex;
    justify-content: space-between;
    gap:5%;
    align-items: top;
}

.sobre-mi .wrap article{
    text-align: justify;
    width: 50%;
}

@media(max-width:800px){
    .sobre-mi .wrap{
        flex-wrap: wrap;
    }

    .sobre-mi .wrap article{
        width: 100%;
        margin:20px 0;
    }
}   

.sobre-mi .wrap article .image{
    width: 100px;
    height: 100px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 100px 100px 0 100px;
    box-shadow: 0 0 0 10px var(--color1);
}

.sobre-mi .wrap article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.sobre-mi .wrap article h2{
    font-size: 2em;
    margin:30px 0 10px 0;
    letter-spacing: 2px;
    text-align: center;
}
.sobre-mi .wrap article p{
    white-space: pre-line;
    line-height: 2;
    opacity: .8;
    
}   

.sobre-mi .wrap article p span{
    display: block;
    text-align: center;
}

/* plans */
.plans{
    padding: 100px 0;
    background-color: var(--color4);
    text-align: center;
    color: var(--color2);
}

.plans h2{
    font-size: 3em;
    margin:0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    display: block;
}

.plans .gallery{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

.plans article{
    width: 31%;
    background-color: var(--color2);
    padding:60px 30px;
    margin:20px 0;
    color: var(--color3);
    border-radius: 5px;
    text-align: left;
}

.plans article h3{
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

.plans article h4{
    font-weight: 900;
    line-height: 1;
    font-size: 2em;
    text-align: center;
}

.plans article  ul{
    list-style-type: none;
    text-align: left;
    padding: 20px 0;
}

.plans article  p{
    list-style-type: none;
    text-align: justify;
    padding: 20px 0;
}

@media(max-width:800px){
    .plans{
        padding: 40px 0;
    }

    .plans h2{
        font-size: 2em;
    }

    .plans .gallery{
        flex-wrap: wrap;
        justify-content: center;
    }

    .plans article{
        width: 100%;
        margin:10px 0;
        text-align: center;
    }   

    .plans article  ul{
        text-align: center;
    }
}


.plans article ul li{
    padding: 10px;
}

.plans article .btn a{
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin:20px 0 0 0;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color2);
    background-color: var(--color1);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background:var(--color2);
    padding: 50px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: scroll;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    border-radius: 10px;
    text-align: justify;
    animation: fadeIn 0.4s ease-in-out;
    color: var(--color3);
}

.modal-content p{
    line-height: 1.5;
    margin:10px 0;
}

.modal-content ul{
    padding: 10px 20px;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


/* faqs */
.faqs{
    padding: 80px 0;
}
.faqs h2{
    font-size: 3em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.faqs .gallery{
    display: flex;
    justify-content: space-between;
    gap:4%;
    padding: 80px 0;
}

.faqs .gallery .item{
    padding: 15px;
}

@media(max-width:800px){
    .gaqs h2{
        font-size: 2em;
    }

    .faqs .gallery{
        flex-wrap: wrap;
        justify-content: center;    
    }

    .faqs .gallery .item{
        padding: 40px;
    }

}

.faqs .gallery .item h3{
    opacity: .8;
    text-transform: uppercase;
}

.faqs .gallery .item p{
    opacity: .5;
    text-align: justify;
}

/* sub-footer */
.sub-footer{
    background-color: #f0f0f0;
    text-align: center;
    padding: 80px 0 50px 0;
}

.sub-footer img{
    max-width: 200px;
    margin:0 0 30px 0;
}

.sub-footer p{
    color: var(--color3);
    opacity: .8;
    max-width: 800px;
    margin:auto;
    text-align: justify;
}

.sub-footer ul.social{
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin:30px 0;
    gap:2%;
}

.sub-footer ul.social li a{
    color: var(--color1);
    text-decoration: none;
}

@media(max-width:800px){
    .sub-footer ul.social{
        display: block;
    }

    .sub-footer ul.social li{
        padding: 10px;
    }
}

.sub-footer ul.social li a:hover{
    color: var(--color4);
}

footer{
    background-color: #f0f0f0;
    text-align: center;
    color: var(--color3);
}

footer .wrap{
    padding: 50px 0;
    border-top:dashed 1px rgba(255,255,255,.1)
}

/* btn-whatsapp */
.btn-whatsapp{
    position: fixed;
    width: 60px;
    line-height: 60px;
    text-align: center;
    bottom: 30px;
    left: 30px;
    border-radius: 50%;
    font-size: 40px;
    background-color: #0e7d28;
    color: #ffffff;
    z-index: 99;
}


.btn-whatsapp:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #0e7d28;
    opacity: .5;
    left: -10px;
    top:-10px;
    border-radius: 50%;
    animation: animacion_a 2s infinite;
    z-index: -1;
}

@keyframes animacion_a{
    0%{
        transform: scale(.2);
        opacity: .4;
    }

    50%{
        opacity: .4;
    }

    100%{
        opacity: 0;
        transform: scale(1.2);
    }
    
}

.btn-whatsapp a{
    display: block;
    text-decoration: none;
    border-radius: 50%;
    color: inherit;
}



/* page */
.page{
       display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    justify-content: center;
    flex-wrap: wrap;
}

.post-password-form{
    width: 80%;
    max-width: 500px;
}

.post-password-form  p{
    margin:0 0 20px 0;
    font-weight: 500;
}

.post-password-form  input[type="password"]{
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    border:solid 1px #dedede;
    outline: none;
}   

.post-password-form  input[type="submit"]{
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border:solid 1px #f0f0f0;
    outline: none;
    background-color: var(--color1);
    font-size: 20px;
    color: var(--color2);
}   