:root {
    --cor-primaria: #D0A34E;
    --cor-secundaria: #3D3B37;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3D3B37, #D0A34E);
    opacity: 0.05;
    z-index: -1;
    filter: blur(150px);
}

h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}


.ccenter {
  width: 570px;
  max-width: 100%;
  margin: 0 auto;
}


.ag_container {
    width: 570px;
    max-width: 93%;
    overflow: hidden;
    background: linear-gradient(135deg, #A46729, #EDCB66, #A46729);
    margin: 0 auto;
    border-radius: 20px;
}

.ag_header {
    display: flex;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
}

.ag_header-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.ag_header-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.ag_header-text {
    font-size: 24px;
    font-weight: 700;
    color: #3D3B37;
    text-transform: uppercase;
}

.ag_main-content {
    padding: 30px 20px;
    color: white;
    text-align: center;
    border-radius: 15px;
}

.ag_title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ag_subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.ag_contact-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.ag_contact-option {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #3D3B37;
}

.ag_contact-option a:visited {
    color: #4fbc18;
    text-decoration: none;
}

.ag_contact-option a:active {
    color: #4fbc18;
    text-decoration: none;
}

.ag_contact-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.ag_contact-type {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.ag_contact-number {
    font-size: 14px;
}

.ag_map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 230px;
    margin-bottom: 25px;
}

.ag_map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ag_address-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ag_address-details {
    font-size: 16px;
    line-height: 1.5;
}

.cliqueuber {
    width: 570px;
    max-width: 93%;
    margin: 20px auto;     
}


.vc_container {
    max-width: 93%;
    margin: 30px auto;
}

.vc_card {
    background-color: #D0A34E;
    color: white;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.vc_card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.vc_card-content {
    display: flex;
    align-items: center;
}

.vc_icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc_icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.vc_text h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}

.vc_text p {
    font-size: 14px;
    opacity: 0.9;
    word-break: break-all;
}

.vc_arrow {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc_arrow svg {
    width: 24px;
    height: 24px;
    fill: #D0A34E;
}

.vc_card-vcard .vc_text p {
    font-weight: 500;
}


/* SOBRE MIM */
.sm_profile-card {
    background-color: white;
    border-radius: 20px;
    border: 2px solid #D0A34E;
    padding: 25px;
    margin: 0 auto;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 93%;
}


.profile-details li {
    display: flex;
    margin-bottom: 5px;
    color: #3D3B37;
    font-size: 16px;
    line-height: 1.5;
}

.profile-details li::before {
    content: "•";
    color: #D0A34E;
    font-weight: bold;
    display: inline-block;
    width: 20px;
    flex-shrink: 0;
}

.see-more {
    color: #3D3B37;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    display: inline-block;
    transition: color 0.3s;
}

.see-more:hover {
    color: #D0A34E;
}

.hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s ease-in-out,
                transform 0.5s ease-in-out;
    will-change: max-height, opacity, transform;
}

.hidden-content.expanded {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s ease-in-out,
                transform 0.5s ease-in-out;
}

.sm_social-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 0 20px 18px;
}

.sm_social-card {
    flex: 1;
    border-radius: 20px;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    transition: transform 0.3s ease;
}

.sm_social-card:hover {
    transform: translateY(-5px);
}

.linkedin {
    background: linear-gradient(135deg, #833AB4, #5851DB, #405DE6);
    box-shadow: 0 4px 15px rgba(64, 93, 230, 0.4);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.social-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

.social-username {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    word-break: break-word;
}





.ca_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 570px;
    max-width: 93%;
    margin-top: 20px;
}




.ca_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ca_logo-icon {
    color: #B59C6F;
    font-size: 30px;
}

.ca_logo h1 {
    font-size: 28px;
    font-weight: 500;
    padding: 8px 0 0 0;
}

.ca_catalog-link {
    color: #B59C6F;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.ca_catalog-link svg {
    margin-left: 5px;
}





/* */
.description {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 16px;
}

.contact-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-buttons img {
  width: 80%;
  height: 80%;
}

.contact-button {
    width: 48%;
    padding: 20px 10px;
    border-radius: 15px;
    text-align: center;
    color: white;
    text-decoration: none;
}

.phone {
    background-color: #353535;
}

.whatsapp {
    background-color: #25D366;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contact-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-number {
    font-size: 14px;
}

.map-container {
    width: 100%;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.address-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.address {
    line-height: 1.5;
    margin-bottom: 30px;
    font-size: 16px;
}

.uber-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    margin-bottom: 10px;
}

.uber-logo {
    font-size: 28px;
    font-weight: 700;
}

.uber-text {
    display: flex;
    flex-direction: column;
}

.uber-text-small {
    font-size: 16px;
}

.uber-text-large {
    font-size: 18px;
    font-weight: 500;
}

.uber-icon {
    width: 50px;
    height: 50px;
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    border: 1px solid #B59C6F;
    pointer-events: none;
}

.page-container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.page-container img {
  width: 100%;
  height: auto;
}

.top-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.contact-card {
    background-color: #B59C6F;
    border-radius: 20px;
    padding: 20px;
    color: white;
    width: 48%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.vcard-text {
    font-weight: 500;
    font-size: 18px;
}

.vcard-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-container {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
}

.arrow-icon {
    color: #B59C6F;
    font-size: 24px;
    transform: rotate(45deg);
}

.email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.email-title {
    font-size: 20px;
    font-weight: 500;
}

.email-address {
    font-size: 16px;
    margin-top: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
    width: 100%;
    padding: 0 5px;
}

.dicas_acc {
    margin: 130px auto;
}



.full_btn {
    background-color: rgba(208, 163, 78, 0.65);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    z-index: 5;
    bottom: 2%;
    right: 4%;
}

.full_btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, #D0A34E, #3D3B37);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.4;
}

.full_btn:hover {
    background-color: rgba(61, 59, 55, 0.65);
    transform: scale(1.05);
}

.full_btn:hover::before {
    filter: blur(20px);
    opacity: 0.6;
}

.full_btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.full_btn.exit svg {
    width: 24px;
    height: 24px;
}

.you_container {
    width: 570px;
    max-width: 93%;
    margin: 0 auto;
  }
  
  .you_carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--cor-primaria);
    padding: 20px;
  }
  
  .you_carousel-stage {
    position: relative;
    height: 400px;
    perspective: 1000px;
  }
  
  .you_carousel-track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .you_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .you_slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .you_video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .you_video-container:hover {
    transform: scale(1.02);
  }
  
  .you_video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .you_content {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
  }
  
  .you_slide-title {
    color: var(--cor-primaria);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .you_slide-description {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .you_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding: 0 10px;
  }
  
  .you_progress-bar {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 15px;
    overflow: hidden;
    position: relative;
  }
  
  .you_progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--cor-primaria);
    transition: width 0.3s ease;
  }
  
  .you_btn {
    background-color: var(--cor-primaria);
    color: var(--cor-secundaria);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .you_btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .you_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }







.carousel-container {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 96%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: auto;
    color: #3D3B37;
    height: 100%;
    width: 100%;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #D0A34E;
}

.navigation {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(61, 59, 55, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #D0A34E;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(208, 163, 78, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10 !important;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(208, 163, 78, 1);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}


@media (max-width: 570px) {

.carousel-container {
    width: 90%;
    max-width: 570px;
    margin: 0 auto;
}

.prev-btn, .next-btn {
    z-index: 20 !important;
}


.prev-btn, .next-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.placeholder {
    padding: 20px auto;
}



.you_container {
width: 90%;
}

.you_title {
font-size: 24px;
}

.you_subtitle {
font-size: 14px;
}

.you_carousel-stage {
height: 300px;
}

.you_btn {
width: 38px;
height: 38px;
}

.full_container {
align-items: flex-start;
padding-top: 40px;
}

.full_btn {
width: 50px;
height: 50px;
}

.full_btn svg {
width: 24px;
height: 24px;
}


.sm_profile-card {
max-width: 91%;
}

.vc_container {
max-width: 92%;
margin: 30px auto;
}

.vc_text h2 {
font-size: 20px;
}

.vc_text p {
font-size: 12px;
}

.ag_main-content {
padding: 30px 15px;
}

.ag_container {
border-radius: 20px;
width: 100%;
}

.ag_contact-icon {
width: 100px;
height: 100px;
margin-bottom: 20px;
}

.ag_title {
font-size: 24px;
text-align: center;
}

.ag_subtitle {
font-size: 16px;
}

.ag_map-container iframe {
width: 98%;
height: 98%;
object-fit: cover;
}

}
