/* Sobre Section */
.sobre {
    padding: 80px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 1rem;
}

.sobre-text ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.sobre-text ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.sobre-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.sobre-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Serviços Section */
.servicos {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 211, 1, 1), rgba(255, 255, 255, 0)) 1;
}

/* Efeito de iluminação amarela */
.servicos::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 211, 1, 0.2) 0%, rgba(255, 211, 1, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: yellowGlow 15s infinite alternate;
}

.servicos::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 211, 1, 0.15) 0%, rgba(255, 211, 1, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: yellowPulse 12s infinite alternate;
}

@keyframes yellowGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes yellowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.servicos .container {
    position: relative;
    z-index: 2;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

/* Efeito de brilho ao passar o mouse */
.servico-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 211, 1, 0.1) 0%, rgba(255, 211, 1, 0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 211, 1, 0.3);
    box-shadow: 0 10px 30px rgba(255, 211, 1, 0.15);
}

.servico-card:hover::before {
    transform: scale(1);
}

.servico-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Efeito de brilho no ícone */
.servico-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 211, 1, 0.3) 0%, rgba(255, 211, 1, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlow 3s infinite alternate;
}

@keyframes iconGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

.servico-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
}

.servico-card p {
    margin-bottom: 0;
    color: #666;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Estilizar ícones para destacar mais a cor amarela */
.servico-icon i {
    background: -webkit-linear-gradient(45deg, var(--primary-color), #FFEA80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(255, 211, 1, 0.2));
}

/* Efeito de pulsação para ícones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.servico-card:hover .servico-icon i {
    animation: pulse 1.5s infinite ease-in-out;
}

/* Destacando a seção com linha decorativa */
.servicos .section-title {
    position: relative;
    z-index: 3;
}

.servicos .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), #FFEA80, var(--primary-color));
    animation: shineGradient 5s infinite linear;
    background-size: 200% auto;
    height: 3px;
}

@keyframes shineGradient {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Estilo para o container do botão na seção serviços */
.servicos-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Produtos Section */
.produtos {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #1c2b56;
    color: #fff;
}

/* Efeito de iluminação amarela */
.produtos::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(55, 107, 255, 0.25) 0%, rgba(55, 107, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: yellowProductGlow 18s infinite alternate;
}

.produtos::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(55, 107, 255, 0.2) 0%, rgba(55, 107, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: yellowProductPulse 15s infinite alternate;
}

@keyframes yellowProductGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes yellowProductPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

.produtos .container {
    position: relative;
    z-index: 2;
}

.produtos-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.categoria {
    text-align: center;
    transition: var(--transition);
    background-color: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    line-height: 0;
}

.categoria img {
    border-radius: 12px 12px 0 0;
    height: 250px;
    object-fit: cover;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
    display: block;
    background-color: transparent;
    line-height: 0;
}

.categoria-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: normal;
}

.categoria:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 211, 1, 0.25);
}

.categoria:hover img {
    transform: scale(1.03);
}

.categoria h3 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: block;
    text-align: center;
}

.categoria h3::after {
    display: none;
}

.categoria p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.produtos-cta {
    text-align: center;
    background-color: rgba(28, 43, 86, 0.7);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(55, 107, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    margin-top: 40px;
}

.produtos-cta h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.produtos-cta .btn-primary {
    color: #000;
}

/* Unidades Section */
.unidades {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.unidades-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.unidades-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.unidade {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.unidade h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.unidade p {
    font-size: 0.9rem;
    color: #666;
}

.ver-todas {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.unidades-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vendedora-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Contato Section */
.contato {
    padding: 80px 0;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.contato-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.contato-texto {
    flex: 1;
    text-align: left;
}

.contato-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-bottom: 0;
}

.contato-item h3 {
    margin-bottom: 0.2rem;
    text-align: left;
}

.contato-item p {
    margin: 0;
    text-align: left;
}

.contato-redes {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contato-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-group:last-of-type textarea {
    flex-grow: 1;
    height: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #FFEA80);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000;
}

.produtos .section-title h2,
.produtos .section-title {
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.produtos .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), #FFEA80, var(--primary-color));
    animation: shineGradient 5s infinite linear;
    background-size: 200% auto;
    height: 3px;
}

@media (max-width: 992px) {
    .sobre-content,
    .unidades-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .unidades-list {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 2rem;
    }
    
    .servicos-grid,
    .produtos-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contato-info {
        grid-template-columns: 1fr;
    }
}

/* Seção de FAQ */
.faq {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background-color: #ffdd00;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
} 