* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #262626;
    color: white;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.mobile-container {
    width: 100%;
    max-width: 530px;
    margin: 5em 0 1em 0;
    padding: 0 18px;
    position: relative;
}

.ha_card {
    background-color: #262626;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    border: 1px solid #B59C6F;
    margin-top: 60px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    border: 5px solid #262626;
    margin: -80px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 90px;
    height: 90px;
}

.logo-circle img {
  width: 60px;
  height: 60px;
  filter: invert(9%) sepia(49%) saturate(0%) hue-rotate(188deg) brightness(98%) contrast(88%);
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pro_carr {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.ca_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 414px;
    padding: 0 0 0 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;
}

.ca_carousel-wrapper {
    width: 100%;
    max-width: 414px;
    position: relative;
    overflow: hidden;
}

.ca_carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ca_slide-container {
    perspective: 1000px;
    transform-style: preserve-3d;
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ca_slide {
    position: absolute;
    width: 280px;
    height: 280px;
    transition: all 0.5s ease;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8) translateX(100%);
}

.ca_slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
}

.ca_slide.prev {
    opacity: 0.6;
    transform: scale(0.8) translateX(-100%);
    z-index: 5;
}

.ca_slide.next {
    opacity: 0.6;
    transform: scale(0.8) translateX(100%);
    z-index: 5;
}

.ca_slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ca_slide-title {
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}

.ca_controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 414px;
    padding: 0 20px;
    margin-top: 20px;
}

.ca_control-btn {
    background-color: #B59C6F;
    color: #262626;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.ca_indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.ca_indicator {
    width: 8px;
    height: 8px;
    background-color: #555;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.ca_indicator.active {
    background-color: #B59C6F;
}

.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;
}

.top-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-section {
    border: 1px solid #B59C6F;
    border-radius: 30px;
    padding: 25px;
    margin: 20px;
    margin-top: 30px;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.5;
}

.about-section a {
    color: #B59C6F;
    text-decoration: none;
}

.hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 0;
}

.hidden-content.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
}

.read-more-container {
    text-align: left;
    margin-top: 5px;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.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 {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.accordion {
    margin: 20px 18px;
    border: 1px solid #B59C6F;
    border-radius: 16px;
    overflow: hidden;
}

.accordion-header {
    position: relative;
    padding: 24px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.accordion-header::before {
    content: '+';
    font-size: 24px;
    color: #B59C6F;
    margin-right: 14px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    position: relative;
    left: 0;
}

.accordion-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    padding: 0 20px 0 48px;
    opacity: 0;
    will-change: max-height, opacity;
    text-align: left;
}

.accordion-content p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
    transform: translateY(-5px);
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.accordion.active .accordion-header::before {
    content: '−';
    transform: rotate(180deg);
}

.accordion-header:hover .accordion-title {
    color: #B59C6F;
}

.accordion.active .accordion-content {
    max-height: none;
    padding-bottom: 24px;
    opacity: 1;
}

.accordion.active .accordion-content p {
    transform: translateY(0);
    transition-delay: 0.05s;
}
