/*=====================================
    AGENDA
======================================*/

.agenda{

    position:relative;

    padding:120px 30px;

    background:

    radial-gradient(
        circle at top left,
        rgba(212,176,106,.08),
        transparent 25%
    ),

    linear-gradient(
        180deg,
        #ffffff,
        #fafafa
    );

    overflow:hidden;

}


/*=====================================
    DECORAÇÃO CORAÇÕES
======================================*/


.agenda::before,
.agenda::after{

    content:"♡";

    position:absolute;

    color:#D4B06A;

    font-family:serif;

    opacity:.12;

    pointer-events:none;

}



.agenda::before{

    content:"♡  ♡  ♡";

    top:70px;

    left:60px;

    font-size:45px;

    letter-spacing:25px;

    transform:rotate(-15deg);

}



.agenda::after{

    content:"♡  ♡";

    bottom:90px;

    right:70px;

    font-size:55px;

    letter-spacing:20px;

    transform:rotate(15deg);

}



/* corações extras */

.agenda-container::before,
.agenda-container::after{

    content:"♡";

    position:absolute;

    color:#D4B06A;

    opacity:.10;

    font-size:28px;

}



.agenda-container::before{

    top:160px;

    right:-120px;

}



.agenda-container::after{

    bottom:180px;

    left:-120px;

}



.agenda-container{

    max-width:760px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}



/*=====================================
    HEADER CALENDÁRIO
======================================*/


.agenda-header{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}



.agenda-divider{

    width:80px;

    height:1px;

    background:#D4B06A;

}



.agenda-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border:1px solid #ead8b5;

    color:#B8924A;

    box-shadow:

    0 10px 30px rgba(0,0,0,.06);

}



.agenda-icon svg{

    width:38px;

    height:38px;

    stroke:currentColor;

}



/*=====================================
    TITULO
======================================*/


.agenda-title{

    margin-top:30px;

    font-family:"Cormorant Garamond",serif;

    font-size:50px;

    font-weight:500;

    color:#B8924A;

    letter-spacing:1px;

}



/*=====================================
    DATA
======================================*/


.agenda-date{

    margin-top:60px;

    padding:35px;

    background:#ffffff;

    border-radius:25px;

    border:1px solid #eeeeee;

    box-shadow:

    0 20px 50px rgba(0,0,0,.05);

}



.agenda-date span{

    display:block;

    font-size:20px;

    color:#777;

    margin-bottom:10px;

}



.agenda-date strong{

    display:block;

    font-size:34px;

    font-weight:600;

    color:#333;

}



/*=====================================
    EVENTOS
======================================*/


.agenda-events{

    margin:70px 0;

    display:flex;

    flex-direction:column;

    gap:55px;

}



.agenda-item{

    display:flex;

    flex-direction:column;

    align-items:center;

}



.agenda-line{

    width:70px;

    height:2px;

    background:#D4B06A;

    margin-bottom:25px;

}



.agenda-item h3{

    font-family:"Cormorant Garamond",serif;

    font-size:36px;

    font-style:italic;

    font-weight:500;

    color:#B8924A;

    text-transform:uppercase;

}



.agenda-item span{

    margin-top:12px;

    font-size:25px;

    color:#666;

    font-weight:600;

}



/*=====================================
    LOCAL
======================================*/


.agenda-location{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

}



.agenda-location-icon{

    width:45px;

    height:45px;

    color:#B8924A;

}



.location-title{

    margin-top:30px;

    font-size:36px;

    font-weight:600;

    color:#B8924A;

}



.location-address{

    margin-top:15px;

    font-size:19px;

    color:#888;

}



/*=====================================
    BOTÃO MODERNO
======================================*/


.map-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin-top:40px;

    padding:16px 42px;

    border-radius:50px;

    background:#222;

    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    transition:.35s ease;

}



.map-button:hover{

    background:#B8924A;

    transform:translateY(-5px);

    box-shadow:

    0 20px 40px rgba(184,146,74,.25);

}



/*=====================================
    ANIMAÇÕES
======================================*/


.agenda-icon{

    transition:.4s ease;

}



.agenda-header:hover .agenda-icon{

    transform:

    rotate(-8deg)

    scale(1.08);

}



.agenda-item{

    transition:.35s ease;

}



.agenda-item:hover{

    transform:translateY(-6px);

}



.agenda-item:hover .agenda-line{

    width:110px;

}



.location-title{

    transition:.35s ease;

}



.location-title:hover{

    color:#8f6d30;

}
